赞
踩
在python文件中直接执行另一个python文件,和引用(import)其他python文件的方法函数有所不同,相当于直接Run python文件
使用 os.system()
os.system('python print.py')
def printFunc():
print('hello world')
printFunc()
import os
os.system('python print.py') # 当两个文件在同一个文件夹下时
# os.system('python ../DataProcessing/LeePY/print.py') # 不在同一个文件夹,使用相对路径(或者绝对路径)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。