The question is best illustrated by the following simple example. I am using pdb to debug the following script (it is Python 3):
astring = input("input here: ")
when stepping in the above line, I get the following prompt and type "abc":
input here: abc
But whatever I input from the keyboard, I get an error, e.g.,
NameError: "name 'abc' is not defined"
> /home/wang/tmp/test.py(4)<module>()
-> astring = input("input here: ")
How can I input when debugging?
You are using the incorrect function for your purposes in Python 2. Use
raw_input
rather thaninput
.