import sysimport os base = os.path.basename(__file__) #当前文件名base2 = os.path.abspath(__file__) #绝对路径base3 = os.path.dirname(os.path.abspath(__file__)) #当前文件路径base4 = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) #当前文件上级路径