gpt4 book ai didi

python - 获取父函数

转载 作者:太空狗 更新时间:2023-10-29 20:50:47 26 4
gpt4 key购买 nike

有没有办法找到调用当前函数的函数?例如:

def first():
second()

def second():
# print out here what function called this one

有什么想法吗?

最佳答案

import inspect

def first():
return second()

def second():
return inspect.getouterframes( inspect.currentframe() )[1]

first()[3] # 'first'

关于python - 获取父函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2529859/

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