标签:importlib
通过字符串导入模块,动态导入模块,3种方式,记录如下:
方式一:
os1 = __import__(‘os‘) os1.path.join <==> from os.path import join
方式二:
import imp os2 = imp.load_module(‘os‘,*imp.find_module(‘os‘)) os2.path.join <==> from os.path import join
方式三:
module = importlib.import_module(‘os‘) os_path = getattr(module,‘path‘) os_path.join <==> from os.path import join
本文出自 “天天向上goto” 博客,请务必保留此出处http://ttxsgoto.blog.51cto.com/4943095/1885311
标签:importlib
原文地址:http://ttxsgoto.blog.51cto.com/4943095/1885311