python闭包

Posted liuw_flexi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python闭包相关的知识,希望对你有一定的参考价值。

参考来自:http://www.jb51.net/article/65478.htm

def createCounter():
    s = [0]
    def counter():
        s[0] = s[0] + 1
        print(s)
        return s[0]

    return counter

counterA = createCounter()

print(counterA(),counterA(),counterA(),counterA())


输出:
[1]
[2]
[3]
[4]
1 2 3 4

 当返回函数引用了循环变量或者后续会发生变化的变量时,这个变量会一直跟随该返回函数

以上是关于python闭包的主要内容,如果未能解决你的问题,请参考以下文章

Python进阶闭包(Closure)

python闲谈--闭包

python中对 函数 闭包 的理解

Python深入04 闭包

理解Python中的闭包

python闭包