python模块包引入

Posted lxfnote

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python模块包引入相关的知识,希望对你有一定的参考价值。

 

 

# 方法一:
cur_root = os.path.split(os.path.abspath(__file__))[0]  # 当前模块绝对目录
# 方法二:
import inspect
cur_root = os.path.split(inspect.getfile(inspect.currentframe()))[0]  # 当前模块绝对目录

father_path=os.path.abspath(os.path.dirname(cur_root)+os.path.sep+".")  # 当前模块父目录
grader_father=os.path.abspath(os.path.dirname(cur_root)+os.path.sep+"..")  # 当前模块父目录的父目录

  

  

 

以上是关于python模块包引入的主要内容,如果未能解决你的问题,请参考以下文章

python模块包引入

廖雪峰Python总结3

如何使用模块化代码片段中的LeakCanary检测内存泄漏?

python引入导入自定义模块和外部文件

Python的基本库与第三方库

包与模块