python 引用文件
时间: 2023-12-19 21:05:27 浏览: 130
Python代码-引用.py
在 Python 中,可以使用 `import` 语句来引用其他文件中的代码。如果要引用同一目录下的文件,可以使用相对路径,例如:
```python
from . import my_module
```
其中 `.` 表示当前目录,`my_module` 是要引用的模块名称。
如果要引用其他目录下的文件,需要使用绝对路径,例如:
```python
import sys
sys.path.append('/path/to/other/directory')
from other_directory import my_module
```
其中 `/path/to/other/directory` 是要引用的目录路径,`my_module` 是要引用的模块名称。在代码执行之前,需要将目录路径添加到 `sys.path` 中,这样 Python 才能在该路径下查找并引用该模块。
阅读全文