-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfriends_all.py
108 lines (68 loc) · 1.57 KB
/
friends_all.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
def valentine_tellings():
import random
valentine = [
"\033[1;36m"
"All of FriendsTV Flirts in One thread"
"\033[0m"
"\n\n"
"How You Doin?"
"\n\n\n"
"You're my lobster"
"\n\n\n"
"You wanna know whats the best thing in my life?"
"\nIt's the first word in the sentence ;)"
"\n\n\n"
"Could I BE anymore interested in you"
"\n\n\n"
"I call this the 'London Style'"
"\n\n\n"
"I am full and yet I know if I stop Loving you"
"\nI'll regret it"
"\n\n\n"
"This is brand new information"
"\nI love you"
"\n\n\n"
"I like it. What's not to like?"
"\nYour smile? Good."
"\nYour laugh? Good."
"\nYour eyes? Good."
"\nYour Personality? Good."
"\nYou? I love you"
"\n\n\n"
"No UH.... I want both!!!!"
"\nI want you on bread!!"
"\n\n\n"
"is your name joey chandler,ross rachel monica or phoebe because let's be more than FRIENDS"
"\n\n\n"
"I'm hopeless and awkward and desperate for love!"
"\n\n\n"
"I want you"
"\nI need you"
"\n\n\n"
"I am taking a break from jumping on the bed"
"\nCan I take you on a date?"
"\n\n\n"
"Joey DOESN'T share food"
"\nBut I will share mine with you ;)"
"\n\n\n"
"*everything is gonne be fine*"
"\nit's just a crush"
"\nhi sweetie"
"\nI love you"
"\n\n\n"
"Je de floop flee"
"\n\n\n"
"un"
"\nblu"
"\nbla"
"\nflu"
"\nflenk!"
"\nSorry I was counting how many times"
"\nI thought of you today"
"\n\n\n"
"Each woman is different"
"\nBut you are so unique"
"\n\n\n"
]
result = random.choice(valentine)
return result