-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBETA_python_menu.py
More file actions
60 lines (52 loc) · 1.52 KB
/
BETA_python_menu.py
File metadata and controls
60 lines (52 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import os
import time
import webbrowser
import sys
logo = """ ___ ___
( ) ( )
| |_ .--. .-.| | .--.
( __) / \ / \ | / \
| | | .-. ; .------. | .-. | | .-. ;
| | ___ | | | | (________) | | | | | | | |
| |( ) | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
| ' | | | ' | | | ' | | | ' | |
' `-' ; ' `-' / ' `-' / ' `-' /
`.__. `.__.' `.__,' `.__.'
"""
print(logo)
page = "Start"
if page == "Start":
print()
print("0 - Create task n\ 1 - Tasks n\ 2 - All tasks n\ 3 - Settings n\ 4 - About developers")
answer = input($ - )
if answer == 1:
page = "Tasks"
elif answer == 2:
page = "All Tasks"
elif answer == 3:
page = "Settings"
elif answer == 4:
page = "About Developers"
elif answer == 0:
page == "Create Task"
else:
print("Invalid page.")
break
if page == "Tasks":
print(logo)
elif page == "All Tasks":
print(logo)
elif page == "Settings":
print(logo)
print("We have no settings lil bro")
elif page == "About Developers":
print(logo)
elif page == "Create Task":
print(logo)
new_task = input("Create new task: ")
task_list += new_task
all_tasks = task_list + new_task
else:
print("error 404")
break