pyhton中绝对路径
时间: 2023-09-12 20:10:09 浏览: 45
python文件绝对路径写法介绍(windows)
5星 · 资源好评率100%
在 Python 中,可以使用 os 模块来获取当前文件的绝对路径,示例代码如下:
```python
import os
# 获取当前文件所在的绝对路径
current_path = os.path.abspath(__file__)
print(current_path)
```
这里使用了 `os.path.abspath()` 函数来获取当前文件的绝对路径,它会返回一个字符串类型的路径值。
阅读全文