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