Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道相当于
from modulename import var
如果我想使用 import_module
importlib.import_module
以下作品
_tmep = importlib.import_module(modulename) var = _temp.var
或者在一行中:
var = importlib.import_module(modulename).var