赞
踩
原意:在cmd命令行下运行命令 python a.py b.py,其中b.py是参数,并且需要使用python2,博主环境变量中的python是python36. 需要用上面的命令行代码批量测试某文件夹下的b.py,得到一群 b.cpp。
代码如下:
import os
os.chdir(r"F:\compiler\PLP\debug_plp\transpiler\test\test_cases")
path = r"F:\compiler\PLP\debug_plp\transpiler\test\test_cases"
files = os.listdir(path)
for file in files:
if file.endswith(".py"):
cmd = "C:\Python27\python.exe F:\compiler\PLP\debug_plp\transpiler\experiment\shedskin- 0.9.4\shedskin\shedskin_init_.py "+file
os.system(cmd)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。