功能导入模块的打印路径

时间:2019-01-04 09:50:37

标签: python-3.x import module

我想编写一个函数,该函数需要使用要导入的父模块的路径。

说函数名称为get_mod_path,它在模块hello

def get_mod_path(): parent_module_path = somehow get it print(parent_module_path) # should print path of calling module do_something_with(parent_module_path)

说一个模块world

world中有文件world_file.py

from hello import get_mod_path get_mod_path() # should print path of world.__file__

0 个答案:

没有答案