我想编写一个函数,该函数需要使用要导入的父模块的路径。
说函数名称为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__