码迷,mamicode.com
首页 > 编程语言 > 详细

python函数式编程-返回函数

时间:2017-09-10 15:03:06      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:turn   pre   color   log   pytho   nbsp   python函数   function   bsp   

一:函数作为返回值

>>> def lazy_sum(*args):
...     def sum():
...         ax = 0
...         for n in args:
...             ax = ax + n
...         return ax
...     return sum
... 
>>> f=lazy_sum(1,2,3,4,5)
>>> 
>>> f
<function sum at 0x7fd1b3eccaa0>
>>> f()
15
>>> f1=lazy_sum(1,2,3,4,5)
>>> f1()
15
>>> 

 

二:闭包

>>> def count():
...     fs=[]
...     for i in range(1,4):
...         def f():
...             return i*i
...         fs.append(f)
...     return fs
... 
>>> f1, f2, f3 = count()
>>> f1
<function f at 0x7fd1b3edfed8>
>>> f1()
9
>>> f2()
9
>>> f3()
9
>>> 

 

python函数式编程-返回函数

标签:turn   pre   color   log   pytho   nbsp   python函数   function   bsp   

原文地址:http://www.cnblogs.com/yaohong/p/7501023.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!