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

Python 函数式编程学习

时间:2014-07-17 23:34:29      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   for   html   

描述:通过将函数作为参数,使得功能类似的函数实现可以整合到同一个函数。

Before

 1 def getAdd(lst):
 2     result = 0
 3     for item in lst:
 4         result += item
 5     return result
 6 
 7 def getMul(lst):
 8     result = 1
 9     for item in lst:
10         result *= item
11     return result
12 
13 print getAdd([1,2,3,4])
14 print getMul([1,2,3,4])

After

 1 def getOperator(lst, init_val, func):
 2     result = init_val
 3     for item in lst:
 4         result = func(result, item)
 5     return result
 6 
 7 def add(x, y):
 8     return x + y
 9 
10 def mul(x, y):
11     return x * y
12 
13 print getOperator([1,2,3,4], 0, add)
14 print getOperator([1,2,3,4], 1, mul)

参考地址:

http://www.cnblogs.com/huxi/archive/2011/06/24/2089358.html

Python 函数式编程学习,布布扣,bubuko.com

Python 函数式编程学习

标签:style   blog   http   color   for   html   

原文地址:http://www.cnblogs.com/mess4u/p/3851501.html

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