-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.py
57 lines (44 loc) · 1.71 KB
/
calculator.py
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
import arithmetic
def main():
while True:
input = raw_input()
split_string = input.split()
if split_string[0] == 'q':
break
else:
if split_string[0] == '+':
num1 = int(split_string[1])
num2 = int(split_string[2])
print arithmetic.add (num1, num2)
elif split_string[0] == '-':
num1 = int(split_string[1])
num2 = int(split_string[2])
print arithmetic.subtract (num1, num2)
elif split_string[0] == '*':
num1 = int(split_string[1])
num2 = int(split_string[2])
print arithmetic.multiply (num1, num2)
elif split_string[0] == '/':
num1 = int(split_string[1])
num2 = int(split_string[2])
print arithmetic.divide (num1, num2)
elif split_string[0] == 'square':
num1 = int(split_string[1])
num2 = int(split_string[2])
print arithmetic.square (num1, num2)
elif split_string[0] == 'cube':
num1 = int(split_string[1])
num2 = int(split_string[2])
print arithmetic.cube (num1, num2)
elif split_string[0] == 'pow':
num1 = int(split_string[1])
num2 = int(split_string[2])
print arithmetic.power (num1, num2)
elif split_string[0] == 'mod':
num1 = int(split_string[1])
num2 = int(split_string[2])
print arithmetic.mod (num1, num2)
else:
print "I don't understand."
if __name__ == '__main__':
main()