在Python 3中取消了通过删除以下命令快速加载脚本的所有简便方法 execfile()
execfile()
我是否有明显的替代品?
execfile("./filename")
采用
exec(open("./filename").read())