importlib
import importlib
math = importlib.import_module('math')
math.sin(2)
mod = importlib.import_module('requests')
mod.get('www.baidu.com')
# Same as 'from . import b'
b = importlib.import_module('.b', __package)Last updated
import importlib
math = importlib.import_module('math')
math.sin(2)
mod = importlib.import_module('requests')
mod.get('www.baidu.com')
# Same as 'from . import b'
b = importlib.import_module('.b', __package)Last updated