码迷,mamicode.com
首页 > 其他好文 > 详细

Map,Filter 和 Reduce

时间:2017-08-09 15:42:48      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:class   ber   items   lis   put   square   word   输入   span   

Map会将一个函数映射到一个输入列表的所有元素上

map(function_to_apply, list_of_inputs)

items = [1, 2, 3, 4, 5]

squared = list (map(lambda x: x**2, items))

number_list = range(-5, 5)

less_than_zero = filter(lambda x: x < 0, number_list)

from functools import reduce

product = reduce( (lambda x, y: x * y), [1, 2, 3, 4] )

 

Map,Filter 和 Reduce

标签:class   ber   items   lis   put   square   word   输入   span   

原文地址:http://www.cnblogs.com/yingchen/p/7325175.html

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