-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpn.py
38 lines (31 loc) · 797 Bytes
/
rpn.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
#!/usr/bin/env python3
import operator
operators = {
'+': operator.add,
'-': operator.sub,
'*': operator.mul,
'/': operator.truediv,
'^': operator.pow,
}
def calculate(myarg):
stack = list()
for token in myarg.split():
try:
token = int(token)
stack.append(token)
except ValueError:
function = operators[token]
arg2 = stack.pop()
arg1 = stack.pop()
result = function(arg1, arg2)
stack.append(result)
print(stack)
if len(stack) != 1:
raise TypeError("Too many parameters")
return stack.pop()
def main():
while True:
result = calculate(input("rpn calc> "))
print("Result: ", result)
if __name__ == '__main__':
main()