-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeOffice_all.py
73 lines (43 loc) · 1.27 KB
/
theOffice_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
def valentine_tellings():
import random
valentine = [
"\033[1;36m"
"All of the Arabic Flirts in One thread"
"\033[0m"
"\n\n"
"Do you have the Wi-Fi password?"
"\nbecause I’m feeling this connection."
"\n\n\n"
"I want to watch your eyes twinkle like stars"
"\n\n\n"
"My ideal date is having you happy"
"\n\n\n"
"I would always love you forever."
"\n\n\n"
"I want to make you much happier"
"\n\n\n"
"I don’t want to be your Jim;"
"\nI want to be your Bob Vance."
"\n\n\n"
"I have many questions now.... such as number one:"
"\nhow dare you make me fall in love with you?"
"\n\n\n"
"I love gazing at your wonderful beauty"
"\n\n\n"
"Michael Scott might declare bankruptcy..."
"\nbut I will just declare all of these feelings"
"\nfor you."
"\n\n\n"
"I Feel God in this Program Tonight.."
"\n\n\n"
"So where does a woman as charming as yourself find herself employed on a day such as today?"
"\n\n\n"
"Are you a cheesy pita?"
"\nBecause you are smoking hot."
"\n\n\n"
"Is it pretzel day or"
"\nam I just happy to see you?"
"\n\n\n"
]
result = random.choice(valentine)
return result