我们可以使用inspect模块来获取当前文件的绝对路径,并通过处理绝对路径来获取当前目录的上一级目录路径。 importinspectimportos file_path=inspect.getfile(inspect.currentframe())# 获取当前文件的绝对路径current_dir=os.path.dirname(os.path.abspath(file_path))# 获取当前目录路径parent_dir=os.path.dirname(current...