Python中启动执行文件

Python中启动执行文件
import os
filename = os.environ.get('PYTHONSTARTUP')
if filename and os.path.isfile(filename):
    execfile(filename)

你可能感兴趣的:(Python中启动执行文件)