我正在尝试在 python 控制台中一次输入几个命令以进行测试。例如:

userInput = None
while userInput != 'end':
    userInput = input('$ ')
    userInput = userInput.strip()
    if userInput == 'one':
        print('all')
    elif userInput == 'two':
        print('at')
    elif userInput == 'three':
        print('once')

是否可以输入“一”然后不再次触摸键盘“二”然后“三”。类似于以下内容:一\r二\r三\r感谢您提前提供帮助!!!

最佳答案

只需创建一个名为 input.txt 的文本文件,如下所示:

one
two
three
end

并像这样调用你的脚本:
python myscript.py < file.txt

关于python - 如何在python控制台中一次输入多个命令,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39061989/

10-11 19:11