Map,Filter 和 Reduce
Posted yingchen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Map,Filter 和 Reduce相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章