Skip to content

Instantly share code, notes, and snippets.

@eqs
Created November 16, 2016 05:50
Show Gist options
  • Save eqs/26bfb9045c0a8ccc4c2e7525bd642682 to your computer and use it in GitHub Desktop.
Save eqs/26bfb9045c0a8ccc4c2e7525bd642682 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
"""
Created on 11/16/16 14:26:04
Pen Pineapple Apple Pen
@author: eqs
"""
import sys
import random
ppap = "Pen Pineapple Apple Pen"
ppapList = ppap.split(" ")
s = ""
while True:
r = random.choice(ppapList)
s += r + " "
if len(s) >= len(ppap) and s[len(s) - (len(ppap)+1):-1] == ppap:
print(s)
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment