`

python 如此灵活的使用filter, map, reduce, sum

 
阅读更多
Functional Programming Tools

There are three built-in functions that are very useful when used with lists: filter(), map(), and reduce().

filter(function, sequence) returns a sequence consisting of those items from the sequence for which function(item) is true. If sequence is a string or tuple, the result will be of the same type; otherwise, it is always a list. For example, to compute some primes:

>>> def f(x): return x % 2 != 0 and x % 3 != 0
...
>>> filter(f, range(2, 25))
[5, 7, 11, 13, 17, 19, 23]


map(function, sequence) calls function(item) for each of the sequence’s items and returns a list of the return values. For example, to compute some cubes:

>>> def cube(x): return x*x*x
...
>>> map(cube, range(1, 11))
[1, 8, 27, 64, 125, 216, 343, 512, 729, 1000]


More than one sequence may be passed; the function must then have as many arguments as there are sequences and is called with the corresponding item from each sequence (or None if some sequence is shorter than another). For example:
>>> seq = range(8)
>>> def add(x, y): return x+y
...
>>> map(add, seq, seq)
[0, 2, 4, 6, 8, 10, 12, 14]


reduce(function, sequence) returns a single value constructed by calling the binary function function on the first two items of the sequence, then on the result and the next item, and so on. For example, to compute the sum of the numbers 1 through 10:
>>> def add(x,y): return x+y
...
>>> reduce(add, range(1, 11))
55


If there’s only one item in the sequence, its value is returned; if the sequence is empty, an exception is raised.

A third argument can be passed to indicate the starting value. In this case the starting value is returned for an empty sequence, and the function is first applied to the starting value and the first sequence item, then to the result and the next item, and so on. For example,
>>> def sum(seq):
...     def add(x,y): return x+y
...     return reduce(add, seq, 0)
...
>>> sum(range(1, 11))
55
>>> sum([])
0

Don’t use this example’s definition of sum(): since summing numbers is such a common need, a built-in function sum(sequence) is already provided, and works exactly like this.

New in version 2.3.
分享到:
评论

相关推荐

    Pythont特殊语法filter,map,reduce,apply使用方法

    Python中的`filter`, `map`, `reduce`, 和 `apply` 是四个非常重要的高阶函数,它们在处理数据和实现特定逻辑时提供了强大的功能。这些函数都属于Python的内建函数,能够有效地帮助我们进行序列操作。 1. **lambda ...

    Python中的特殊语法:filter、map、reduce、lambda介绍

    总的来说,`filter()`, `map()`, `reduce()`和`lambda`是Python中非常实用的功能,它们提供了简洁的函数式编程风格,有助于编写更清晰、更高效的代码。熟练掌握这些工具,可以极大地提升你的Python编程能力。

    初学者python笔记(匿名函数、map()函数、reduce()函数、filter()函数)

    在Python编程语言中,匿名函数、`map()`、`reduce()`和`filter()`函数是非常重要的概念,特别是对于初学者来说,理解这些函数的用途和用法对于提升编程能力至关重要。 匿名函数,通常以`lambda`关键字定义,它是一...

    Python中map,reduce,filter和sorted函数的使用方法

    在Python编程语言中,有四个内置的高阶函数:`map()`, `reduce()`, `filter()` 和 `sorted()`,它们对于处理数据和简化代码有着重要作用。这些函数都是函数式编程的重要工具,尤其在处理列表和其他可迭代对象时非常...

    Python之filter共2页.pdf.zip

    扩展:**结合其他函数,如`map()`和`reduce()`,可以实现更复杂的操作。例如,`filter()`和`list()`组合可以实现列表的过滤,`filter()`和`sum()`组合可以求满足条件的元素总和。 以上是对`filter()`函数的基本...

    python实战

    Python中的`reduce()`函数可以实现这一功能,它通常需要配合`functools`模块一起使用。 **示例**:计算向量的长度 ```python from functools import reduce import math def vector_length(elements): return ...

    Python常见内置高效率函数用法示例

    在Python编程实践中,有几类内置函数特别重要,它们是filter()、map()、reduce()以及lambda表达式。这些函数因其简洁性和高效性,被广大Python开发者所青睐。在接下来的内容中,我们将详细介绍这些函数的用法以及...

    filter 使用实例

    `filter()` 可以与其他高阶函数如 `map()` 和 `reduce()` 结合使用。例如,如果我们想计算所有偶数的平方和,可以先用 `filter()` 筛选出偶数,然后用 `map()` 将它们平方,最后用 `reduce()` 求和: ```python ...

    (完整版)python常用函数.pdf

    在Python中,内置的高阶函数是实现复杂操作的重要工具,其中包括`map()`、`reduce()`和`filter()`函数。这些函数允许我们以更加优雅的方式处理数据。 1. `map()`函数 `map()`函数用于对一个列表中的每个元素应用...

    python常用函数.doc

    ### Python 常用函数详解 #### 一、`map()` 函数 ...以上介绍了 Python 中 `map()`、`reduce()` 和 `filter()` 几个常用的内置函数及其基本用法。掌握这些函数可以帮助开发者更高效地处理数据,实现更简洁的编程逻辑。

    python教程(阿良)

    ### Python基础知识 #### 1.1 介绍 Python是一种高级编程语言,以其简洁清晰的语法著称,非常适合初学者入门。Python支持多种编程范式,包括面向对象、命令式、函数式以及过程式编程风格。 #### 1.2 安装Python ...

    40个你可能不知道的Python技巧附代码

    20. **使用`map`, `filter`, `reduce`**:这些函数可以简化对序列的操作。 ```python square_all = map(lambda x: x ** 2, numbers) even_numbers = filter(lambda x: x % 2 == 0, numbers) sum_of_squares = ...

    python之lambda表达式.pdf

    Lambda表达式常常与高阶函数(如`map()`、`filter()`和`reduce()`)一起使用。例如,如果我们有一个列表,我们可以使用`map()`函数结合Lambda表达式来对列表中的所有元素执行相同的操作: ```python numbers = [1, ...

    Python_编码风格指南中译版

    ##### 1.1.10 使用apply、filter、map、reduce 这些内置函数可以在处理数据结构时提供便利。然而,对于更复杂的逻辑或大型数据集,它们可能不如显式的循环或列表推导式直观。仅在代码简洁性和性能需求相当时使用...

    Python-全面Python编程速查表

    4. **高阶函数**:函数可以作为参数传递给其他函数,也可以作为其他函数的返回值,如`map()`、`filter()`和`reduce()`。 **四、模块与包** 1. **导入模块**:`import module_name`,或`from module_name import ...

    Python-常用函数.docx

    total = reduce(sum_two, numbers) print(total) # 输出 15 ``` #### 七、`multiply(x, y)` 这是一个简单的数学函数,用于计算两个数的乘积。在 NumPy 库中,可以使用 `numpy.multiply()` 进行数值计算。 **示例:...

    第九天 02匿名函数【千锋Python人工智能学院】1

    1. **作为参数传递**:当需要将函数作为参数传递给其他高阶函数(如`sorted`, `filter`, `map`, `reduce`等)时,lambda函数因其简洁性而特别有用。例如,在排序列表时,可以使用lambda函数指定排序依据: ```...

    Python库 | streamkit-0.3.1.tar.gz

    例如,可以使用`map()`函数对每个元素应用函数,`filter()`函数则根据条件过滤元素。 2. **并行处理**:StreamKit支持并行化处理,能够充分利用多核处理器的优势,提高数据处理速度。通过`par_map()`和`par_reduce...

Global site tag (gtag.js) - Google Analytics