现在我正在使用此代码运行exe:
subprocess.Popen(['file location,file'],stderr=subprocess.STDOUT,stdout=subprocess.PIPE)\.communicate()[0]
一切顺利。 但在控制台中我使用其他选项来打印其他数据,如
in console: 'exe location' 'file location' option
如何将此选项添加到python脚本,就像我现在在控制台中使用它一样?
我也试过了,但没有工作Opening an .exe and passing commands to it via Python subprocess?
由于
答案 0 :(得分:0)
您只需将参数作为第一个参数传递给Popen
,就像这样
subprocess.Popen(['file location,file', 'option'])