我有一个奇怪的问题。当我尝试运行以下python代码(使用python 3.6.3)
print('Enter your name:')
x = input()
print('Hello, ' + x)
我得到以下结果/错误
Enter your name:
Test
Traceback (most recent call last):
File "C:\Users\USERNAME\Desktop\main.py", line 8, in <module>
x = input()
File "<string>", line 1, in <module>
NameError: name 'Test' is not defined
有关文件字符串的部分表示这不是代码问题。有人可以帮忙吗?