本文介绍了Python输入模块类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用importlib.import_module如下动态加载Python模块

I am dynamically loading a Python module using importlib.import_module as follows

    def load_module(mod_name: str) -> ???:
        return importlib.import_module(mod_name)

有人可以告诉我什么是模块类型的正确类型注释. typing模块不包含一个模块,在其他地方也找不到答案.

Can somebody tell me what is the correct type annotation for a module type. The typing module does not contain one and I could not find an answer elsewhere.

推荐答案

您正在寻找 types.ModuleType .

You're looking for types.ModuleType.

这篇关于Python输入模块类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 10:09