Created
May 28, 2016 03:41
-
-
Save KaroAntonio/fa9b5c147f83291ea8412808a46b70b2 to your computer and use it in GitHub Desktop.
poirpose.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
def giveUp(): | |
pass | |
def searchForGod( where = 'here' ): | |
if where == 'inside': | |
return 'me' | |
else: return 'you' | |
def code( time = int(random.random() * 100) ): | |
print('help im lost') | |
if time > 0: | |
time -= 1 | |
code( time ) | |
def eatPopcorn(): | |
bucket = ["salty" for i in range(int(random.random() * 20))] | |
face = [] | |
for popcorn in bucket: | |
face += [ popcorn ] | |
def callEx(): | |
important_things_to_say = [ | |
'I never told you youre the only person to make me cry', | |
'How come you never looked me in the eyes after sex?', | |
'how long did you love me for before evaporating' | |
] | |
inertia = 0 | |
if inertia != 0: | |
for thing in important_things_to_say: | |
print thing | |
def tinder(): | |
swipes = 30 | |
while swipes > 0: | |
pic_of_other = " ;) " | |
if pic_of_other == "ex": | |
print "swipe left" | |
else: print "swipe right" | |
swipes -= 1 | |
purpose = None | |
while purpose == None: | |
purpose = random.choice([ | |
giveUp, | |
callEx, | |
code, | |
eatPopcorn, | |
tinder, | |
searchForGod, | |
])() | |
print(purpose) | |
if purpose != "what im looking for": | |
purpose = None |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment