首页 > 代码库 > python map/reduce

python map/reduce

# python 2.7

map(function, sequence[, sequence, ...]) -> list

map传入的函数依次作用到序列的每个元素,并把结果作为新的list返回

>>> def f(a):

    return a*a

>>> map(f,[3,6])
[9, 36]
>>>

 

 

>>> def f(a,b):
return a+b

 

>>> map(f,[1,2],[3,4])

[4, 6]
>>>

 

 

reduce(function, sequence[, initial]) -> value

reduce把一个函数作用到一个序列上,这个函数必须接受两个参数,reduce把结果和序列的下一个元素做累积计算,最后返回一个值。

>>> def f(x,y):
return x+y

 

>>> reduce(f,[1,2,3,4])
10
>>>

python map/reduce