Python:如何从嵌套函数调用函数

时间:2019-06-04 11:54:40

标签: python

有什么方法可以从嵌套函数的子项中调用该函数,而该子函数不在其本地范围内?

def foo(x):
    return x+1

def bar(y):
    def bar_child():
        value = y + foo(5) #how to call foo here?
        return value

0 个答案:

没有答案