python通过命令启动脚本(同时启动多个程序)

2019-10-27  本文已影响0人  周周周__

有趣命令,做需求在想怎么去同时启动多个脚本,或者管理工具来管理自己的爬虫。

图片.png
Execute the command in a subshell在子shell中执行命令
import os
os.system('python task1.py') #task1.py是在同级目录下边
#也可以通过路径去执行
os.system('python ./task/task1.py')
上一篇 下一篇

猜你喜欢

热点阅读