python通过命令启动脚本(同时启动多个程序)
2019-10-27 本文已影响0人
周周周__
有趣命令,做需求在想怎么去同时启动多个脚本,或者管理工具来管理自己的爬虫。
Execute the command in a subshell
在子shell中执行命令
import os
os.system('python task1.py') #task1.py是在同级目录下边
#也可以通过路径去执行
os.system('python ./task/task1.py')