我有一个名为app.exe的程序,它接受1个参数并开始执行。当app.exe正在执行时,它会提示我确认 - 例如 - "你确定要继续吗?&# 34;我必须说是/否。
现在我已经在python中编写了一个与app.exe通信的程序,提供了1个输入参数。但是我无法为app.exe提供是/否选项(对于你确定要继续吗?)通过我的script.Below是我的程序。
proc=Popen(outlines, shell=True, stdin=PIPE, stdout=PIPE)
#Outlines is the command which contains 1 input parameter.
proc.communicate(input='n\n')[0]
#I saw this in python documentation.But it is not working.
让我知道我在这里缺少什么。