标签: python
我不确定这是否可行,但我只是想知道我是否有这种形式的代码:
def f1() return f2() def f2() print(this.calling_function())
我可以在this.calling_function()中添加什么来打印f1作为答案?
this.calling_function()
f1
(换句话说,如何在堆栈跟踪中升级一级)。