1. 首页
  2. 数据库
  3. 其它
  4. python标准库学习(后篇)

python标准库学习(后篇)

上传者: 2021-04-26 16:51:24上传 PDF文件 247KB 热度 6次
执行已编译的代码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函
用户评论