python获取当前路径
时间: 2023-10-16 09:27:04 浏览: 252
Python获取当前路径实现代码
5星 · 资源好评率100%
在 Python 中,可以使用 `os` 模块来获取当前路径。具体代码如下:
```python
import os
current_path = os.getcwd()
print("当前路径为:", current_path)
```
其中,`os.getcwd()` 函数可以返回当前工作目录的路径。
阅读全文
Python获取当前路径实现代码