-
Notifications
You must be signed in to change notification settings - Fork 0
/
jokes.py
71 lines (54 loc) · 1.42 KB
/
jokes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import sex_with_me as sex_with_me_words
import pickup_lines as pickup_lines_words
import bar_jokes as bar_jokes_words
import yo_mama as yo_mama_words
import back_in_my_day as back_in_my_day_words
import random
"""
noun
adjective
string -> string
"""
def back_in_my_day():
word = random.choice(back_in_my_day_words.back_in_my_day_word)
prompt = 'Back In My Day:\n' \
'Back in my day we didn\'t have ' + word + ', ________.\n'
return prompt
"""
adjective
string -> string
"""
def yo_mama():
word = random.choice(yo_mama_words.yo_mama_word)
prompt = 'Yo Mama:\n' \
'Yo mama is so ' + word + '!\n' \
'(How ' + word + ' is she?)\n' \
'She\'s so ' + word + ', that ________.\n'
return prompt
"""
noun
string -> string
"""
def sex_with_me():
word = random.choice(sex_with_me_words.sex_with_me_word)
prompt = 'Sex With Me:\n' \
'Sex with me is like ' + word + ', ________.\n'
return prompt
"""
noun
string -> string
"""
def bar_joke():
word = random.choice(bar_jokes_words.bar_joke_word)
prompt = '185:\n' \
'______ ' + word + ' walk into a bar, ___________.\n'
return prompt
"""
noun
string -> string
"""
def pickup_lines():
word = random.choice(pickup_lines_words.pickup_lines_word)
prompt = 'Pickup Lines:\n' \
'Hey ________, are you ' + word + '? Because ________.\n'
return prompt