函数的嵌套:
在函数内部定义函数就是函数的嵌套
def func1():
pass
def func2():
pass
闭包:
example:
def funcx(x):
def funcy(y):
return x*y(内部函数(funcy)对外部作用域(funcx)(不包括全局作用域)变量(x)进行引用,内部函数(funcy)就被认为是闭包)
return funcy
本文共 281 字,大约阅读时间需要 1 分钟。
函数的嵌套:
在函数内部定义函数就是函数的嵌套
def func1():
pass
def func2():
pass
闭包:
example:
def funcx(x):
def funcy(y):
return x*y(内部函数(funcy)对外部作用域(funcx)(不包括全局作用域)变量(x)进行引用,内部函数(funcy)就被认为是闭包)
return funcy
转载于:https://www.cnblogs.com/xiaoxi-blog/p/6653544.html