-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_test.py
More file actions
39 lines (30 loc) · 826 Bytes
/
project_test.py
File metadata and controls
39 lines (30 loc) · 826 Bytes
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
def CALL_MENU():
print("""
__ _ _ __
___ _____/ /_(_) __(_) /___ __
/ _ `/ __/ __/ / |/ / / __/ // /
\_,_/\__/\__/_/|___/_/\__/\_, /
/___/
Tool Developed By- Vinay Jangam
""")
CALL_MENU()
ui = str(input("Enter Weather Status[good/bad]: "))
def GOOD_WEATHER_CALL():
print("The Weather is Good~!")
print("going for a walk~!")
def BAD_WEATHER_CALL():
print("The Weather is Bad~!")
print("Staying at home~!")
# ACTIVITIES BELOW DEFS
def GO_MOVIE():
print("gone to watch movie~!")
print("Enjoying wathcing the movie~!")
def HAVE_LUNCH():
print("Eating lunch~!")
if ui == "good":
GOOD_WEATHER_CALL()
GO_MOVIE()
HAVE_LUNCH()
else:
ui == "bad"
BAD_WEATHER_CALL()