import os
print(os.getcwd()) # 获得当前工作目录
print(os.path.abspath('.')) # 获得当前工作目录
print(os.path.abspath('..')) # 获得当前工作目录的父目录
print(os.path.abspath(os.curdir)) # 获得当前工作目录
image.png
import os
print(os.getcwd()) # 获得当前工作目录
print(os.path.abspath('.')) # 获得当前工作目录
print(os.path.abspath('..')) # 获得当前工作目录的父目录
print(os.path.abspath(os.curdir)) # 获得当前工作目录
image.png
本文标题:Python获取当前路径
本文链接:https://www.haomeiwen.com/subject/fkrructx.html
网友评论