目录

Python-同时运行两个以上的脚本

目录

Python - 同时运行两个以上的脚本

在c.py中

import os
os.system("python a.py")
os.system("python b.py")

转载于:https://www.cnblogs.com/allen2333/p/8905805.html