这个问题可能很简单,但我是Python的新手。最好通过以下简单示例来说明问题。我正在使用pdb来调试以下脚本(它是python 3):
astring = input("input here: ")
当进入上面的行时,我得到以下提示并输入“abc”
input here: abc
但无论我从键盘输入什么,我都会收到错误,例如
NameError: "name 'abc' is not defined"
> /home/wang/tmp/test.py(4)<module>()
-> astring = input("input here: ")
调试时如何输入?非常感谢!