我正在尝试从键盘输入到python3程序。请参阅以下代码:
keyInput = input('Would you like to see another plot? y/n: ')
print(keyInput)
if keyInput == 'y':
continue
elif keyInput == 'n':
break
else:
print('Command ' + keyInput+' is not valid')
我一直收到这样的错误:bash:y:找不到命令......
我正在开发centos7上的代码。我认为shell首先尝试处理命令,而不是将输入传递给我的程序。
如何绕过linux shell?或任何其他解决这个问题的方法?