当我要求输入时,例如:
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