84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
import os cmdline ='python publisher.py | python scheduler.py' os.system(cmdline)
运行完上面的步骤,想要继续打开一个终端运行另一个python文件,怎么做呢?
认证高级PHP讲师
参考我以前的回答 https://segmentfault.com/q/1010000005915290/a-1020000005917042 里面有一个类似的例子
问题在于os.system是阻塞的, 一定要上一步完成你才能做下一步 建议改用subprocess
os.system
subprocess
参考我以前的回答 https://segmentfault.com/q/1010000005915290/a-1020000005917042 里面有一个类似的例子
问题在于
os.system
是阻塞的, 一定要上一步完成你才能做下一步建议改用
subprocess