請問 subprocess.Popen 呼叫另一個程式的問題
需求是呼叫另一個程式將程式執行過程印出到畫面(stdout)之外
同時把執行過程存到變數裡做後續判斷
例子如下, hello.py 要求使用者輸入資料並印出,另一個程式 test.py呼叫 hello.py
想要儲存 hello.py 的執行過程,但是如果設定stdout=PIPE,執行過程就不會顯示提示
要使用者輸入資料
不知道該怎麼設定?
hello.py
if __name__=='__main__':
name = input("please enter your name : ")
print("hello, "+name)
test.py
def run_cmd(cmd):
process = subprocess.Popen(cmd, universal_newlines=True, shell=True,
stdout=PIPE, stderr=PIPE)
stdout, stderr = process.communicate()
ret = process.returncode
return ret, stdout, stderr
def main():
retval, output, stderr = run_cmd("hello.py")
print(f"\nResult:\n{output}")
sys.exit(0)