Python中的map、reduce和filter浅析


Posted in Python onApril 26, 2014

1、先看看什么是 iterable 对象

以内置的max函数为例子,查看其doc:

>>> print max.__doc__
max(iterable[, key=func]) -> value
max(a, b, c, ...[, key=func]) -> value
With a single iterable argument, return its largest item.
With two or more arguments, return the largest argument.

在max函数的第一种形式中,其第一个参数是一个 iterable 对象,既然这样,那么哪些是 iterable 对象呢?
>>> max('abcx')
>>> 'x'
>>> max('1234')
>>> '4'
>>> max((1,2,3))
>>> 3
>>> max([1,2,4])
>>> 4

我们可以使用yield生成一个iterable 对象(也有其他的方式):
def my_range(start,end):
    ''' '''
    while start <= end:
        yield start
        start += 1

执行下面的代码:
for num in my_range(1, 4):
    print num
print max(my_range(1, 4))

将输出:
1
2
3
4
4

2、map

在http://docs.python.org/2/library/functions.html#map中如此介绍map函数:

map(function, iterable, ...)
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 with None items. If function is None, 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.

map函数使用自定义的function处理iterable中的每一个元素,将所有的处理结果以list的形式返回。例如:
def func(x):
    ''' '''
    return x*x
print map(func, [1,2,4,8])
print map(func, my_range(1, 4))

运行结果是:
[1, 4, 16, 64]
[1, 4, 9, 16]

也可以通过列表推导来实现:
print [x*x for x in [1,2,4,8]]

3、reduce

在http://docs.python.org/2/library/functions.html#reduce中如下介绍reduce函数:

reduce(function, iterable[, initializer])
Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value. For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates ((((1+2)+3)+4)+5). The left argument, x, is the accumulated value and the right argument, y, is the update value from the iterable. If the optional initializer is present, it is placed before the items of the iterable in the calculation, and serves as a default when the iterable is empty. If initializer is not given and iterable contains only one item, the first item is returned.

这个已经介绍的很明了,
reduce(lambda x, y: x+y, [1, 2, 3, 4, 5])

相当于计算
((((1+2)+3)+4)+5)

而:
reduce(lambda x, y: x+y, [1, 2, 3, 4, 5],6)

相当于计算
(((((6+1)+2)+3)+4)+5)

4、filter

在http://docs.python.org/2/library/functions.html#filter中如下介绍filter函数:

filter(function, iterable)
Construct a list from those elements of iterable for which function returns true. iterable may be either a sequence, a container which supports iteration, or an iterator. If iterable is a string or a tuple, the result also has that type; otherwise it is always a list. If function is None, the identity function is assumed, that is, all elements of iterable that are false are removed.
Note that filter(function, iterable) is equivalent to [item for item in iterable if function(item)] if function is not None and [item for item in iterable if item] if function is None.

参数function(是函数)用于处理iterable中的每个元素,如果function处理某元素时候返回true,那么该元素将作为list的成员而返回。比如,过滤掉字符串中的字符a:
def func(x):
    ''' '''
    return x != 'a'
print filter(func, 'awake')

运行结果是:
wke

这也可以通过列表推导来实现:
print ''.join([x for x in 'awake' if x != 'a'])
Python 相关文章推荐
python pickle 和 shelve模块的用法
Sep 16 Python
python显示天气预报
Mar 02 Python
centos 下面安装python2.7 +pip +mysqld
Nov 18 Python
Python实现PS滤镜的万花筒效果示例
Jan 23 Python
Python操作Redis之设置key的过期时间实例代码
Jan 25 Python
PyQt5创建一个新窗口的实例
Jun 20 Python
Django实现发送邮件功能
Jul 18 Python
Python绘制股票移动均线的实例
Aug 24 Python
Pytorch中实现只导入部分模型参数的方式
Jan 02 Python
Python通过2种方法输出带颜色字体
Mar 02 Python
使用Keras训练好的.h5模型来测试一个实例
Jul 06 Python
Python datetime模块的使用示例
Feb 02 Python
Python实现的Kmeans++算法实例
Apr 26 #Python
爬山算法简介和Python实现实例
Apr 26 #Python
Python操作sqlite3快速、安全插入数据(防注入)的实例
Apr 26 #Python
python实现的二叉树算法和kmp算法实例
Apr 25 #Python
python中的__init__ 、__new__、__call__小结
Apr 25 #Python
Python yield 小结和实例
Apr 25 #Python
python计数排序和基数排序算法实例
Apr 25 #Python
You might like
PHP代码网站如何防范SQL注入漏洞攻击建议分享
2012/03/01 PHP
PHP计数器的实现代码
2013/06/08 PHP
基于PHP5魔术常量与魔术方法的详解
2013/06/13 PHP
获取URL文件名后缀
2013/10/24 PHP
PHP实现对图片的反色处理功能【测试可用】
2018/02/01 PHP
再谈javascript图片预加载技术(详细演示)
2011/03/12 Javascript
Js从头学起(基本数据类型和引用类型的参数传递详细分析)
2012/02/16 Javascript
jQuery截取指定长度字符串的实现原理及代码
2014/07/01 Javascript
javascript关于open.window子页面执行完成后刷新父页面的问题分析
2015/04/27 Javascript
JavaScript简单修改窗口大小的方法
2015/08/03 Javascript
jQuery实现图片加载完成后改变图片大小的方法
2016/03/29 Javascript
深入理解Angularjs向指令传递数据双向绑定机制
2016/12/31 Javascript
js的OOP继承实现(必看篇)
2017/02/18 Javascript
DataTables添加额外的查询参数和删除columns等无用参数实例
2017/07/04 Javascript
JS实现页面打印(整体、局部)
2017/08/18 Javascript
在vue中使用jointjs的方法
2018/03/24 Javascript
JavaScript 点击触发复制功能实例详解
2018/11/02 Javascript
微信小程序分包加载代码实现方法详解
2019/09/23 Javascript
你不可不知的Vue.js列表渲染详解
2019/10/01 Javascript
Vue分页效果与购物车功能
2019/12/13 Javascript
[10:04]国际邀请赛采访专栏:DK.Farseer,mouz.Black^,采访员Josh专访
2013/08/05 DOTA
[02:43]中国五虎出征TI3视频
2013/08/02 DOTA
python如何获取服务器硬件信息
2017/05/11 Python
详解如何设置Python环境变量?
2019/05/13 Python
Python利用多线程同步锁实现多窗口订票系统(推荐)
2019/12/22 Python
CSS3中box-shadow的用法介绍
2015/07/15 HTML / CSS
HTML5的自定义属性data-*详细介绍和JS操作实例
2014/04/10 HTML / CSS
介绍一下SQL注入攻击的种类和防范手段
2012/02/18 面试题
自我评价的范文
2014/02/02 职场文书
洗发露广告词
2014/03/14 职场文书
学校文明单位申报材料
2014/05/06 职场文书
学校食堂标语
2014/10/06 职场文书
房地产销售主管岗位职责
2015/02/13 职场文书
食品安全责任书范本
2015/05/09 职场文书
2016年情人节广告语
2016/01/28 职场文书
SQL Server内存机制浅探
2022/04/06 SQL Server