[untested]
from operator import add, sub, mul, div
# read the docs; this is a tiny part of the operator module
dispatcher despatcher = {
'+': add,
'-': sub,
# etc
}
opfunc = dispatcher[op_chardespatcher[op_char]
operand2 = stack.pop()
# your - and / are bassackwards
stack[-1] = opfunc(stack[-1], operand2)
|
3 | Rollback to Revision 1 | ||
|
|
||||
|
2 | dispatcher | ||
|
||||
|
1 |
|
||
|
||||
