python 不同层级目录下包的导入

python 不同层级目录下导入,只能导入包,如果要导入包就必须在包下建立__init__.py 文件 。需要用sys.path.append(path) 将要导入包的路径添加到需要导入的文件中。这个路径是包的上层目录。比如

路径如下

--dira

----dirb

-------test1.py

-------__init__.py

--dirc

----dird

------test2.py

如果在这个路径关系下test2.py 想要引用test1.py 中的函数,那么在test2.py 中必须添加sys.path.append("../../dira")

然后import dirb.test1

使用函数必须为dirb.test1.fun()

你可能感兴趣的:(python 不同层级目录下包的导入)