从模块导入字符串作为模块

时间:2019-08-06 16:09:54

标签: python import python-import

我需要从熊猫导入DataFrame作为字符串。

import importlib
import pandas
full_module_name = "DataFrame"
mymodule = importlib.import_module(pandas.full_module_name)

import importlib
full_module_name = "pandas.DataFrame"
mymodule = importlib.import_module(full_module_name)

0 个答案:

没有答案