input_var = input ("Press 'E' and 'Enter' to Exit: ")
NameError: name 'e' is not defined
I am using Python 2.5. How I can overcome this error?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
input reads and evaluates a Python expression. When it tries to evaluate it, it looks for a variable e, which is not defined, and fails.
You almost always want to use raw_input instead. (And in Python3, input has this behaviour.)
Or, better, on Unix, use readline so the user can edit their input.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0