-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBirthday_wish.py
More file actions
45 lines (43 loc) · 1.18 KB
/
Birthday_wish.py
File metadata and controls
45 lines (43 loc) · 1.18 KB
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
from time import sleep
def start():
name = input("Enter Your Name : ").upper()
print("\t\ti i i")
sleep(1)
print("\t\ti i i")
sleep(1)
print("\t:---------------------:")
print("\t: Happy ++++ :")
sleep(1)
print("\t: ++++ Birthday :")
sleep(1)
print(f"\t: {name} ++++ :")
print("\t/______________________\ ")
sleep(1)
print("\t:-:-:-:-:-:-:-:-:-:-:-:")
sleep(.25)
print("\t:-:-:-:-:-:-:-:-:-:-:-:")
sleep(.25)
print("\t:-:-:-:-:-:-:-:-:-:-:-:")
sleep(.25)
print("\t――――――――――――――――――")
sleep(.25)
print("\t|| || || || || || ")
sleep(.25)
print("\t|| || || || || || ")
sleep(.25)
print("\t|| || || || || || ")
sleep(.25)
print("\t|| || || || || || ")
sleep(.25)
print("\t|| || || || || || ")
sleep(.5)
print("Loading......")
sleep(1)
print("A message to you.....")
sleep(4)
print("\t MAY GOD BLESS YOU!! :)")
a = input("1.TYPE 'yes' if it\'s your Birthday\n2.PRESS 'ENTER' KEY\n(ELSE TYPE 'QUIT' TO QUIT)\n\n:").lower()
if (a == "yes"):
start()
else:
print("BYE!!")