Python 当前程序文件路径
时间: 2023-11-05 10:08:15 浏览: 114
python获取程序执行文件路径的方法(推荐)
5星 · 资源好评率100%
可以使用 Python 的 `os` 模块来获取当前程序文件的路径。具体的代码如下:
```python
import os
current_path = os.path.abspath(__file__)
print(current_path)
```
其中,`__file__` 表示当前模块的文件名,`os.path.abspath()` 方法可以将相对路径转化为绝对路径。这样,`current_path` 变量就存储了当前程序文件的路径。
阅读全文