python 不同目录包的互相引用
参考https://zhuanlan.zhihu.com/p/53930960同级包的引用:import sys, osbase_path = os.path.dirname(os.path.dirname( os.path.abspath(__file__)))sys.path.append(base_path)---------------- sys拼接 一定要在自定义包引入之前定义 -------------------..