python 从Python中的父文件夹导入模块

Posted

tags:

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

# From http://stackoverflow.com/a/11158224

# Solution A - If the script importing the module is in a package
from .. import mymodule

# Solution B - If the script importing the module is not in a package
import os,sys,inspect
current_dir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
parent_dir = os.path.dirname(current_dir)
sys.path.insert(0, parent_dir) 
import mymodule

以上是关于python 从Python中的父文件夹导入模块的主要内容,如果未能解决你的问题,请参考以下文章

在Python中以绝对路径或者相对路径导入文件(或模块)的方法

从目录导入python中的用户定义模块

如何从python中的其他目录导入模块? [复制]

如何从 Python 中的子文件夹导入模块或文件?

python导入(import)文件夹下python子函数的方法

将python模块导入databricks中的python脚本