一、绝对路径import ospath1=os.path.abspath('.') #表示当前所处的文件夹的绝对路径print(path1)path2=os.path.abspath('..') # 表示当前所处的文件夹上一级文件夹的绝对路径print(path2)