The operator module has functions that implement the standard arithmetic operators. With that, you can set up a mapping like:
OperatorFunctions = {
'+': operator.add,
'-': operator.sub,
'*': operator.mul,
'/': operator.div,
# etc
}
Then your main loop can look something like this:
for char in postfix_expression:
if char in OperatorFunctions:
stack.append(OperatorFunctions[char](stack.pop(), stack.pop()))
else:
stack.append(char)
You will want to take care to ensure that operators the operands to subtraction and division are popped off the stack in the correct order.
