我正在尝试使用python运行脚本。脚本运行后,它会询问一些问题。无论如何用Python输入答案到终端?有没有可以帮我这么做的图书馆?
例如,问题可能是:
Enter your choice (0-10): <Use Python to enter a value here.>
感谢帮助,谢谢!
答案 0 :(得分:1)
这样的事,
import pexpect
child = pexpect.spawn ('process argument')
child.expect ('Enter your choice.*: ')
child.sendline ('0')