-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpn.py
37 lines (31 loc) · 850 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.floordiv,
'^': operator.pow,
}
def calculate(arg):
stack = list()
for token in arg.split():
try:
value = int(token)
stack.append(value)
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('malformed input')
return stack.pop()
def main():
while True:
result = calculate(input("rpn calc> "))
print(result)
if __name__ == '__main__': # Note: that's "underscore underscore n a m e ..."
main()