可以直接执行脚本 而import是将脚本导入另一个文件里,可以看
例如一个Python文件 a.py:
def hello(a): print ahello(test)
在Python命令行使用:
execfile("a.py", { "test": "hello world"})
就能够执行函数了 看来execfile这个函数很方便测试使用。
本文共 237 字,大约阅读时间需要 1 分钟。
可以直接执行脚本 而import是将脚本导入另一个文件里,可以看
例如一个Python文件 a.py:
def hello(a): print ahello(test)
在Python命令行使用:
execfile("a.py", { "test": "hello world"})
就能够执行函数了 看来execfile这个函数很方便测试使用。
转载于:https://www.cnblogs.com/impact-crusher/p/3421208.html