涉及输入函数的Python错误

时间:2019-01-31 09:33:03

标签: python input python-3.6

我有一个奇怪的问题。当我尝试运行以下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

有关文件字符串的部分表示这不是代码问题。有人可以帮忙吗?

0 个答案:

没有答案