当前位置: 主页 > 日志 > Python >

Python 动态加载模块的3种方法

转自:http://www.linuxany.com/archives/1563.html

 

 1,使用系统函数__import_()

  1. stringmodule = __import__('string')

2,使用imp 模块

  1. import imp
  2. stringmodule = imp.load_module('string',*imp.find_module('string'))

3,使用exec

  1. import_string = "import string as stringmodule"
  2. exec import_string

 

[日志信息]

该日志于 2011-10-20 04:01 由 redice 发表在 redice's Blog ,你除了可以发表评论外,还可以转载 “Python 动态加载模块的3种方法” 日志到你的网站或博客,但是请保留源地址及作者信息,谢谢!!    (尊重他人劳动,你我共同努力)
   
验证(必填):   点击我更换验证码

redice's Blog  is powered by DedeCms |  Theme by Monkeii.Lee |  网站地图 |  本服务器由西安鲲之鹏网络信息技术有限公司友情提供

返回顶部