Python operators - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T13:21:27Zhttp://stackoverflow.com/feeds/question/1090863http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1090863/python-operators4Python operatorsAbhi2009-07-07T07:37:49Z2009-07-07T08:13:58Z
<p>I am learning Python for the past few days and I have written this piece of code to evaluate a postfix expression.</p>
<pre><code>postfix_expression = "34*34*+"
stack = []
for char in postfix_expression :
try :
char = int(char);
stack.append(char);
except ValueError:
if char == '+' :
stack.append(stack.pop() + stack.pop())
elif char == '-' :
stack.append(stack.pop() - stack.pop())
elif char == '*' :
stack.append(stack.pop() * stack.pop())
elif char == '/' :
stack.append(stack.pop() / stack.pop())
print stack.pop()
</code></pre>
<p>Is there a way I can avoid that huge if else block? As in, is there module that takes a mathematical operator in the string form and invokes the corresponding mathematical operator or some python idiom that makes this simple?</p>
http://stackoverflow.com/questions/1090863/python-operators/1090886#109088611Answer by Greg Hewgill for Python operatorsGreg Hewgill2009-07-07T07:43:50Z2009-07-07T07:53:15Z<p>The <a href="http://docs.python.org/library/operator.html" rel="nofollow"><code>operator</code></a> module has functions that implement the standard arithmetic operators. With that, you can set up a mapping like:</p>
<pre><code>OperatorFunctions = {
'+': operator.add,
'-': operator.sub,
'*': operator.mul,
'/': operator.div,
# etc
}
</code></pre>
<p>Then your main loop can look something like this:</p>
<pre><code>for char in postfix_expression:
if char in OperatorFunctions:
stack.append(OperatorFunctions[char](stack.pop(), stack.pop()))
else:
stack.append(char)
</code></pre>
<p>You will want to take care to ensure that the operands to subtraction and division are popped off the stack in the correct order.</p>
http://stackoverflow.com/questions/1090863/python-operators/1090891#10908910Answer by DzinX for Python operatorsDzinX2009-07-07T07:46:37Z2009-07-07T07:53:50Z<p>Just use <a href="http://docs.python.org/library/functions.html#eval" rel="nofollow">eval</a> along with string generation:</p>
<pre><code>postfix_expression = "34*34*+"
stack = []
for char in postfix_expression:
if char in '+-*/':
expression = '%d%s%d' % (stack.pop(), char, stack.pop())
stack.append(eval(expression))
else:
stack.append(int(char))
print stack.pop()
</code></pre>
<p><strong>EDIT</strong>: made an even nicer version without the exception handling.</p>
http://stackoverflow.com/questions/1090863/python-operators/1090908#10909080Answer by John Machin for Python operatorsJohn Machin2009-07-07T07:52:48Z2009-07-07T08:13:58Z<pre><code>[untested]
from operator import add, sub, mul, div
# read the docs; this is a tiny part of the operator module
despatcher = {
'+': add,
'-': sub,
# etc
}
opfunc = despatcher[op_char]
operand2 = stack.pop()
# your - and / are bassackwards
stack[-1] = opfunc(stack[-1], operand2)
</code></pre>