-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.py
More file actions
30 lines (29 loc) · 817 Bytes
/
main.py
File metadata and controls
30 lines (29 loc) · 817 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
print("Welcome to python utilities. our apps:")
print("painted cube solving tool")
print("calculator")
print("triangle area finder")
print("slime fighter(game)")
print("time (10 second sample of the date and time)")
print("2d area calculator")
print("3d volume calculator")
print("dictionary")
print("BadSorter")
command=input("which app do you want to use? ").lower()
if command == "painted cube solving tool":
import paintedcubesolver
elif command == "triangle area finder":
import triongle
elif command == "time":
import clock
elif command == "2d area calculator":
import arcalc
elif command == "3d volume calculator":
import volcalc
elif command == "dictionary":
import diction
elif command == "calculator":
import calculator
elif command == "badsorter":
import BadSorter
else:
import pidms