将输入从键盘传递到centos中的python3应用程序

时间:2018-05-27 23:03:56

标签: linux python-3.x bash keyboard centos

我正在尝试从键盘输入到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?或任何其他解决这个问题的方法?

0 个答案:

没有答案