python获取执行脚本的路径
时间: 2023-09-08 20:14:09 浏览: 85
python获取程序执行文件路径的方法(推荐)
5星 · 资源好评率100%
获取执行脚本的路径可以使用以下方法:
```python
import os
script_path = os.path.realpath(__file__)
print("执行脚本的路径是:", script_path)
```
这段代码中,os.path.realpath(__file__)可以获取当前脚本的绝对路径。
阅读全文