python 怎么执行py文件

2024-11-16 19:33:50
推荐回答(1个)
回答1:

方法:
execfile('xx.py'),括号内为py文件路径;
如果需要传参数,就用os.system()那种方法;
如果还想获得这个文件的输出,那就得用os.popen();