StackOverflow 文档 Python Language 教程 导入模块 import() 函数 import() 函数 Created: November-22, 2018 __import__() 函数可用于导入名称仅在运行时已知的模块 if user_input == "os": os = __import__("os") # equivalent to import os 此函数还可用于指定模块的文件路径 mod = __import__(r"C:/path/to/file/anywhere/on/computer/module.py") 重新导入模块导入子模块