-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.py
More file actions
44 lines (35 loc) · 1.19 KB
/
Copy pathstart.py
File metadata and controls
44 lines (35 loc) · 1.19 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
#!/usr/bin/python
import os
#############################
# Menu
print ("\033[36;1m#########################################")
print ("\033[36;1m# \033[37;1mCommand Information \033[36;1m #")
print ("\033[36;1m#########################################")
print (" ")
print (" 1>>tb Variabel Penambahan ")
print (" 2>>kr Variabel Pengurangan ")
print (" 3>>bg Variabel Pembagian ")
print (" 4>>x Variabel Perkalian ")
print (" 5>>about Show About Author ")
print (" 99>>exit Exit The Program ")
print (" ")
menu = input("insm >> ")
if menu==1:
os.system('cd Kalkulator')
os.system('python tambah.py')
if menu==2:
os.system('cd Kalkulator')
os.system('python kurang.py')
if menu==3:
os.system('cd Kalkulator')
os.system('python bagi.py')
if menu==4:
os.system('cd Kalkulator')
os.system('python kali.py')
if menu==5:
print (' Author : Andhika Adi Saputra')
print (' Code name : ExGeneralTz ')
print (' Team : Insomnia Cyber Team')
print (' Github : https://github.com/ExGeneralTz')
if menu==99:
os.system('exit')