Python动态导入模块

module = “sure”
try:
__import__(module)
print module+” found”
except:
print module+” not found”

评论关闭。