-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc.py
More file actions
42 lines (35 loc) · 1.43 KB
/
Copy pathcalc.py
File metadata and controls
42 lines (35 loc) · 1.43 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
print("""
░▒█▀▀▄░█▀▀▄░▒█░░░░▒█▀▀▄░▒█░▒█░▒█░░░░█▀▀▄░▀▀█▀▀░▒█▀▀▀█░▒█▀▀▄
░▒█░░░▒█▄▄█░▒█░░░░▒█░░░░▒█░▒█░▒█░░░▒█▄▄█░░▒█░░░▒█░░▒█░▒█▄▄▀
░▒█▄▄▀▒█░▒█░▒█▄▄█░▒█▄▄▀░░▀▄▄▀░▒█▄▄█▒█░▒█░░▒█░░░▒█▄▄▄█░▒█░▒█
[1] +
[2] -
[3] x
[4] /
""")
while True:
select = input("> ")
if select == '1':
a = input("Enter First Digit: ")
print("+")
b = input('Enter The Second Digit: ')
c = int(a)+int(b)
print(c)
if select == '2':
a = input("Enter First Digit: ")
print("-")
b = input('Enter The Second Digit: ')
c = int(a)-int(b)
print(c)
if select == '3':
a = input("Enter First Digit: ")
print("x")
b = input('Enter The Second Digit: ')
c = int(a)*int(b)
print(c)
if select == '4':
a = input("Enter First Digit: ")
print("/")
b = input('Enter The Second Digit: ')
c = int(a)/int(b)
print(c)