current_path = os.path.dirname(os.path.abspath(_file_)) _file_报错
时间: 2024-05-09 17:16:42 浏览: 240
获取当前文件的文件名
这是因为 `_file_` 有一个下划线少了,应该是 `__file__`。正确的代码应该是:
```
import os
current_path = os.path.dirname(os.path.abspath(__file__))
```
这段代码的作用是获取当前 Python 脚本所在的目录路径。`os.path.abspath(__file__)` 用于获取当前脚本的绝对路径,`os.path.dirname()` 用于获取该路径所在的目录路径。
阅读全文