Bootstrap

python 按照顺序执行py文件

1、常用的方法:使用os.system(),这种方法在linux上运行,容易出现环境变量的问题。在windows下可以正常运行

import os
cmd = 'python ./train.py'
os.system(cmd)

2、使用模块codecs,可以在linuxs上使用,但是最好不要使用字典和for构成的循环来执行,容易出现包的问题,

import codecs
file_path = r"./make_dirs.py"
# 模块codecs提供了一个open()方法,可以指定一个编码打开文件
with codecs.open(file_path, mode="r", encoding='utf-8') as file:
    code = file.read()
    # 不进行预编译,直接执行亦可
    exec(code)

3、execfile(‘ xx.py’) 适用python2

4、run xx.py 使用ipython控制台

;