我正在尝试在Python 3.4中使用import_module。
我要导入的文件包含假定numpy已导入为np的函数。在我的主文件中,我已经设置了它,但它没有加载文件。
在文档中写道:
帮助模块importlib中的函数import_module:
import_module(name,package = None) 导入模块。
The 'package' argument is required when performing a relative import. It
specifies the package to use as the anchor point from which to resolve the
relative import to an absolute import.
文档说明包选项是必需的,但我仍然不清楚如何使用它。任何人都可以帮助我吗?