Posted in Python onNovember 22, 2014
1、使用系统函数__import_()
stringmodule = __import__('string')
2、使用imp 模块
import imp stringmodule = imp.load_module('string',*imp.find_module('string'))
3、使用exec
import_string = "import string as stringmodule" exec import_string
Python动态加载模块的3种方法
- Author -
junjie声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@