Python的闭包
2021-01-16 19:13
阅读:405
标签:append int class span pytho div func 闭包 基础 Python的闭包 标签:append int class span pytho div func 闭包 基础 原文地址:https://www.cnblogs.com/vigogogogo/p/12923157.html
def func():
n = []
def func2():
n.append(len(n))
print(‘fnuc2:%d‘%len(n))
return func2
f = func()
f()
f()
f()
以上的代码运行结果为:
fnuc2:1
fnuc2:2
fnuc2:3
闭包可以让一个外层函数中的变量在函数调用结束后依然存在,也是装饰器的基础
评论
亲,登录后才可以留言!