map&reduce
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map&reduce相关的知识,希望对你有一定的参考价值。
#map list输出
>>> map(str,[1,2,3,4])
[‘1‘, ‘2‘, ‘3‘, ‘4‘]
#函数fn
def fn(x,y):
return x*10+y
#函数char2num
>>> def char2num(s):
return{‘0‘:88,‘1‘:77,‘2‘:66}[s]
#reduce fn函数map char2num
>>> reduce(fn,map(char2num,‘012‘))
9636
#过程:1.88,77,66 2.88*10+77=957 3.957*10+66=9636
以上是关于map&reduce的主要内容,如果未能解决你的问题,请参考以下文章