导入os模块。 使用os.path.abspath()方法结合__file__获取路径。 示例代码: importos# 获取当前文件的绝对路径current_file_path=os.path.abspath(__file__)print(f"当前 Python 文件路径:{current_file_path}")# 获取当前 EXE 所在目录(假设是通过打包生成的)exe_dir=os.path.dirname(current_file_path)pri...