美文网首页
python通过命令启动脚本(同时启动多个程序)

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

作者: 周周周__ | 来源:发表于2019-10-27 11:38 被阅读0次

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

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

相关文章

网友评论

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

      本文链接:https://www.haomeiwen.com/subject/shmpvctx.html