gpt4 book ai didi

python - 如何从已执行但未在其中声明的函数中获取模块的文件路径?

转载 作者:行者123 更新时间:2023-11-30 23:39:53 25 4
gpt4 key购买 nike

如果我想要当前模块的路径,我将使用__file__

现在假设我想要一个函数来返回它。我做不到:

def get_path():
return __file__

因为它将返回声明该函数的模块的路径。

即使该函数不是在模块的根部而是在任何嵌套级别调用,我也需要它工作。

最佳答案

这就是我要做的:

import sys

def get_path():
namespace = sys._getframe(1).f_globals # caller's globals
return namespace.get('__file__')

关于python - 如何从已执行但未在其中声明的函数中获取模块的文件路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13137141/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com