博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python中map()函数浅析
阅读量:6373 次
发布时间:2019-06-23

本文共 2864 字,大约阅读时间需要 9 分钟。

hot3.png

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

文档中的介绍在这里:

map(functioniterable...)

Apply function to every item of iterable and return a list of the results. If additionaliterable 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,  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.

一点一点看:

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

来个例子:

1 >>> def add100(x):
2 ...     return x+100
3 ...
4 >>> hh = [11,22,33]
5 >>> map(add100,hh)
6 [111, 122, 133]
就像文档中说的:对hh中的元素做了add100,返回了结果的list。

2、如果给出了额外的可迭代参数,则对每个可迭代参数中的元素‘并行’的应用‘function’。(翻译的不好,这里的关键是‘并行’)

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

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

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

介绍到这里应该差不多了吧!不过还有东西可以挖掘:

stackoverflow上有人说可以这样理解map():

1 map(f, iterable)
2  
3 基本上等于:
4  
5 [f(x) for x in iterable]
赶快试一下:

1 >>> def add100(x):
2 ...     return x + 100
3 ...
4 >>> list1 = [11,22,33]
5 >>> map(add100,list1)
6 [101, 102, 103]
7  
8 >>> [add100(i) for i in list1]
9 [101, 102, 103]
哦,输出结果一样。原来map()就是列表推导式啊!要是这样想就错了:这里只是表面现象!再来个例子看看:

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

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

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

1 [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]
这便是上面列表推导的结果。怎么会这么多?当然了列表推导可以这么写:

1 result = []
2  
3 for a in list1:
4     for b in list2:
5         for c in list3:
6             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

转载于:https://my.oschina.net/chenliang165/blog/174560

你可能感兴趣的文章
AES算法介绍
查看>>
数据库实例: STOREBOOK > 用户 > 编辑 用户: PUBLIC
查看>>
莫比乌斯反演学习【莫比乌斯反演】
查看>>
c#socket编程基础
查看>>
WORKAREA_SIZE_POLICY参数引起的ORA-04030错误
查看>>
C#正则表达式通过HTML提取网页中的图片src
查看>>
myloader恢复mysql数据库示例
查看>>
[20170204]dg环境修改sys口令.txt
查看>>
宏定义
查看>>
[20171117]参数filesystemio_options.txt
查看>>
Git Config(转)
查看>>
解读ASP.NET 5 & MVC6系列(10):Controller与Action
查看>>
docker学习(1) 安装
查看>>
浩云网络刘里奥:做好IDC,云计算的“水源”才能不竭
查看>>
电商App如何让用户直接打开商品详情页
查看>>
S/4HANA业务角色概览之订单到收款篇
查看>>
开源大数据周刊-第66期
查看>>
计算机编码历程(what is Unicode&UTF8 )
查看>>
HR问你项目经验,你应该这么说!
查看>>
Zookeeper学习系列【二】Zookeeper 集群章节之集群搭建
查看>>