Difficult-Rocket/try/import_check (2).py
2022-01-19 20:21:57 +08:00

18 lines
250 B
Python

"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
import importlib
name = 'import_test'
na = importlib.import_module(name)
print(na.__name__)
pllist = {}
pllist[name] = na
pllist[name].a()