批量执行python程序文件
如果想执行n个文件(不必一个一个点run),可以把要执行的文件放在同一个文件夹里,然后在一个文件里输入以下脚本即可。import oslst = os.listdir(os.getcwd()) # 获取当前目录下所有的文件名for c in lst: if os.path.isfile(c) and c.endswith('.py') and c.find("run")== -...