标题: 关于input的问题 [打印本页] 作者: 啦啦啦 时间: 2017-12-8 09:20 标题: 关于input的问题 print"hello"
input()
print"how are you"
输出后如下 ,为什么会出现traceback的问题?? 谢谢解答
hello
hello
Traceback (most recent call last):
File "C:/Python27/lianxi1", line 2, in <module>
input()
File "<string>", line 1, in <module>
NameError: name 'hello' is not defined
>>>