我有一个字符串变量test
,在 Python 2.x 中这很好用。
test = raw_input("enter the test")
print test
但在 Python 3.x 中,我这样做:
test = input("enter the test")
print test
使用输入字符串sdas
,我收到一条错误消息
Traceback (most recent call last):
File "/home/ananiev/PycharmProjects/PigLatin/main.py", line 5, in <module>
test = input("enter the test")
File "<string>", line 1, in <module>
NameError: name 'sdas' is not defined