python 3中execfile的替代方法是什么?

在Python 3中取消了通过删除以下命令快速加载脚本的所有简便方法 execfile()

我是否有明显的替代品?

回答:

execfile("./filename") 

采用

exec(open("./filename").read())

以上是 python 3中execfile的替代方法是什么? 的全部内容, 来源链接: utcz.com/qa/421491.html

回到顶部