os.path.join(os.path.dirname("__file__"), os.path.pardir
时间: 2023-08-15 20:15:17 浏览: 275
Python中的os.path路径模块中的操作方法总结
5星 · 资源好评率100%
`os.path.join(os.path.dirname("__file__"), os.path.pardir)` 这行代码的作用是获取当前文件的父目录路径。`os.path.dirname("__file__")` 返回的是当前文件的目录路径,而 `os.path.pardir` 表示父目录,使用 `os.path.join()` 将这两个路径拼接起来就得到了当前文件的父目录路径。
阅读全文