Why do I get this error and how can I fix it? Please & thanks
>Solution :
Your error comes from the fact that you are running Python 2 (which is now obsolete, consider upgrading to Python 3), where input reads a string from stdin and then eval it. To have the desired effect (that is, what you would get in Python 3 with input), you should use raw_input instead.