共计 530 个字符,预计需要花费 2 分钟才能阅读完成。
要在 Python 中导入本地文件,可以使用 importlib
模块的 import_module
函数或 exec
函数来实现。以下是两种方法的示例:
- 使用
importlib
模块的import_module
函数:
import importlib.util
# 指定本地文件的路径
file_path = "path/to/your/file.py"
# 使用 import_module 函数导入本地文件
spec = importlib.util.spec_from_file_location("module_name", file_path)
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
- 使用
exec
函数:
# 指定本地文件的路径
file_path = "path/to/your/file.py"
# 使用 exec 函数执行本地文件
with open(file_path, "r") as file:
code = file.read()
exec(code)
请注意,使用 exec
函数导入本地文件可能会存在一些安全风险,因为它允许执行任意代码。因此建议在导入未知来源的文件时要格外小心。
丸趣 TV 网 – 提供最优质的资源集合!
正文完