python闭包

Posted 爬虫爬一个

tags:

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

def wai(x):
    def nei(y):
        return x * y
    return nei

i = wai(3)
print(i,type(i))
print(i(6))

 

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

Python进阶闭包(Closure)

python闲谈--闭包

python中对 函数 闭包 的理解

Python深入04 闭包

理解Python中的闭包

python闭包