NameError请求用户输入时

时间:2017-02-13 19:23:10

标签: python linux python-3.x input

当我要求输入时,例如:

userInput = input('Left or Right? ')
if userInput == 'Left':
    print('okay')

然后运行程序,键入" Left", 出现此错误:

userInput = input('Left or Right? ')
File "<string>", line 1, in <module>
NameError: name 'Left' is not defined

我该如何解决这个问题?

在Linux上运行Python 3.6.0

0 个答案:

没有答案