Python获取当前路径
2019-09-26 本文已影响0人
king2king
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