0%

Python获取当前工作目录

使用os模块获取当前工作目录:

1
2
3
4
5
6
import os

print(os.getcwd()) # 获得当前工作目录
print(os.path.abspath('.')) # 获得当前工作目录
print(os.path.abspath('..')) # 获得当前工作目录的父目录
print(os.path.abspath(os.curdir)) # 获得当前工作目录