python标准库学习(后篇)
执行已编译的代码execfile("hello.py")defEXECFILE(filename,locals=None,globals=None):execcompile(open(filename).read(),filename,"exec")inlocals,globalsEXECFILE("hello.py")helloagain,andwelcometotheshowhelloagain,andwelcometotheshow显式地访问__builtin__模块中的函数Python还提供了execfile函数,一个从文件加载代码,编译代码,执行代码的快捷方式.使用execfile函
用户评论