我想用python並行生成一些文件。 Python將生成命令作爲新的子進程調用。到目前爲止,這些子過程與文件一樣得到了創建。從子進程調用返回
我注意到,在最後一道工序結束時,預計會有回車。按Enter鍵完成最後一道工序。
如果我用os.system(commandString)同步(即按順序)運行文件生成,則不需要CR。最後的過程是否以某種方式等待某件事?
謝謝你的幫助!
米哈伊
import subprocess
for trace in traces:
... # build commandString containing the in- and output filename
from subprocess import Popen
p = Popen(commandString)
'check_call'將等待並確保您獲得0退出狀態 – 2015-02-24 16:14:21