show/hide this revision's text 2 removed exception handling

Just use eval along with string generation:

postfix_expression = "34*34*+"
stack = []
for char in postfix_expression:
    try:
        char = int(char)
        stack.append(char)
    except ValueError:
        assert if char in '+-*/' # just to be safe that eval won't do anything evil
        +-*/':
        expression = '%d%s%d' % (stack.pop(), char, stack.pop())
        stack.append(eval(expression))
    else:
        stack.append(int(char))
print stack.pop()

EDIT: made an even nicer version without the exception handling.

show/hide this revision's text 1

Just use eval along with string generation:

postfix_expression = "34*34*+"
stack = []
for char in postfix_expression:
    try:
        char = int(char)
        stack.append(char)
    except ValueError:
        assert char in '+-*/' # just to be safe that eval won't do anything evil
        expression = '%d%s%d' % (stack.pop(), char, stack.pop())
        stack.append(eval(expression))
print stack.pop()