I\'m writing a program which needs a user input for an polynomial function of x. I\'m using Tkinter and python 2.5.
I have a parser method which so far takes the inputt
Look for "recursive descent parser". It's the canonical method for analysis of strings where some operator precedence is involved.