考虑嵌套函数:
def a():
def b():
def c():
def d():
def t():
我知道:
所以下面的堆栈实现:
自下而上: t a t a d a b c
很好,因为 t 调用 a,a 调用 t 等等。
动态范围又如何?
找不到任何有关此问题的信息
不,不可能,使用 Python 只能调用上面的 1 个方法。
def a(): # a can't call c
def b():
def c(): # c can't call a and t, but can call d
def d():