RubyQuiz 148 - Postfix to Infix

I have been meaning for some time to tackle the RubyQuiz problems in Python. The one from yesterday (#148) is quite interesting, taking postfix notated expressions and returning an infix version. For example 2 3 5 + goes to 2 * (3 + 5) I spoilt »