Python中map()函数浅析

MapReduce的设计灵感来自于函数式编程,这里不打算提MapReduce,就拿python中的map()函数来学习一下。 html

文档中的介绍在这里: python

map(function, iterable, ...) web

Apply function to every item of iterable and return a list of the results. If additional iterable arguments are passed, function must take that many arguments and is applied to the items from all iterables in parallel. If one iterable is shorter than another it is assumed to be extended withNoneitems. If function isNone, the identity function is assumed; if there are multiple arguments, map() returns a list consisting of tuples containing the corresponding items from all iterables (a kind of transpose operation). The iterable arguments may be a sequence or any iterable object; the result is always a list. 编程

一点一点看: app

一、对可迭代函数'iterable'中的每个元素应用‘function’方法,将结果做为list返回。 ide

来个例子: 函数式编程

>>> def add100(x):
...     return x+100
... 
>>> hh = [11,22,33]
>>> map(add100,hh)
[111, 122, 133]
就像文档中说的:对hh中的元素作了add100,返回告终果的list。


二、若是给出了额外的可迭代参数,则对每一个可迭代参数中的元素‘并行’的应用‘function’。(翻译的很差,这里的关键是‘并行’) 函数

>>> def abc(a, b, c):
...     return a*10000 + b*100 + c
... 
>>> list1 = [11,22,33]
>>> list2 = [44,55,66]
>>> list3 = [77,88,99]
>>> map(abc,list1,list2,list3)
[114477, 225588, 336699]
看到并行的效果了吧!在每一个list中,取出了下标相同的元素,执行了abc()。


三、若是'function'给出的是‘None’,自动假定一个‘identity’函数(这个‘identity’不知道怎么解释,看例子吧学习

>>> list1 = [11,22,33]
>>> map(None,list1)
[11, 22, 33]
>>> list1 = [11,22,33]
>>> list2 = [44,55,66]
>>> list3 = [77,88,99]
>>> map(None,list1,list2,list3)
[(11, 44, 77), (22, 55, 88), (33, 66, 99)]
用语言解释好像有点拗口 ,例子应该很容易理解。


介绍到这里应该差很少了吧!不过还有东西能够挖掘: spa

stackoverflow上有人说能够这样理解map():

map(f, iterable)

基本上等于:

[f(x) for x in iterable]
赶快试一下:


>>> def add100(x):
...     return x + 100
... 
>>> list1 = [11,22,33]
>>> map(add100,list1)
[101, 102, 103]

>>> [add100(i) for i in list1]
[101, 102, 103]
哦,输出结果同样。原来map()就是列表推导式啊!要是这样想就错了:这里只是表面现象!再来个例子看看:


>>> def abc(a, b, c):
...     return a*10000 + b*100 + c
... 
>>> list1 = [11,22,33]
>>> list2 = [44,55,66]
>>> list3 = [77,88,99]
>>> map(abc,list1,list2,list3)
[114477, 225588, 336699]
这个例子咱们在上面看过了,如果用列表推导应该怎么写呢?我想是这样的:


[abc(a,b,c) for a in list1 for b in list2 for c in list3]

可是看到结果,发现根本不是这么回事:

[114477, 114488, 114499, 115577, 115588, 115599, 116677, 116688, 116699, 224477, 224488, 224499, 225577, 225588, 225599, 226677, 226688, 226699, 334477, 334488, 334499, 335577, 335588, 335599, 336677, 336688, 336699]
这即是上面列表推导的结果。怎么会这么多?固然了列表推导能够这么写:


result = []

for a in list1:
    for b in list2:
        for c in list3:
            result.append(abc(abc))
原来如此,如果将三个list看作矩阵的话:
11
22
33
44
55
66
77
88
99

map()只作了列上面的运算,而列表推导(也就是嵌套for循环)作了笛卡尔乘积。

OK,就写到这里。仅我的理解,若有差错请指正,多谢!

上面的例子有些来自于这里:

http://infohost.nmt.edu/tcc/help/pubs/python/web/map-function.html

http://stackoverflow.com/questions/10973766/understanding-the-map-function-python

相关文章
相关标签/搜索