Python笔记

Posted

tags:

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

目录

closure

 

closure

closure01.py:

 技术分享

技术分享

技术分享
def make_adder(base):

    def adder(x):
        return base + x

    return adder

add5 = make_adder(5)
print(add5(6))
print(add5(7))
print(add5(8))
View Code

 

 closure02.py:

技术分享

技术分享

技术分享
def make_fact():

    def fact(n):
        if n == 1:
            return 1L
        else:
            return n * fact(n - 1)

    return fact

fact = make_fact()
print(fact(7))
View Code

 

返回首页

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

Python 3学习笔记

Python Tornado初学笔记之表单与模板

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段

Python 向 Postman 请求代码片段

python [代码片段]一些有趣的代码#sort