Python reduce() function
2021/7/21 1:06:12
本文主要是介绍Python reduce() function,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
reduce() in Python
- 第一步,选取序列的前两个元素,得到结果。
- 下一步是将相同的函数应用于先前得到的结果和第二个元素后面的数字,然后再次存储结果。
- 此过程将继续进行,直到容器中不再剩下任何元素。
- 最终返回的结果被返回并打印在控制台上。
Example 1: 求list元素的和
import functools lis = [1, 3, 5, 6, 2,] print(functools.reduce(lambda a, b: a+b, lis)) print(functools.reduce(lambda a, b: a if a > b else b, lis))
Example 2: 求list中最大值
import functools lis = [1, 3, 5, 6, 2,] print(functools.reduce(lambda a, b: a if a > b else b, lis))
Example 3: 结合operator函数
import functools import operator lis = [1, 3, 5, 6, 2, ] # 求 list 和 print(functools.reduce(operator.add, lis)) # 求 list 乘 print(functools.reduce(operator.mul, lis)) # 字符串拼接 print(functools.reduce(operator.add, ["geeks", "for", "geeks"]))
reduce()和 accumulate 的区别
reduce()存储中间结果,只返回最终的求和值。然而,accumulate()返回一个包含中间结果的迭代器。迭代器返回的最后一个数字是列表的总和。
import itertools print(list(itertools.accumulate(lis, lambda x, y: x+y))) # 输出结果 [1, 4, 9, 15, 17]
参考:
https://www.geeksforgeeks.org/reduce-in-python/
这篇关于Python reduce() function的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南
- 2024-11-06Python编程基础入门指南
- 2024-11-06怎么使用python 计算两个GPS的距离功能-icode9专业技术文章分享
- 2024-11-06Python 基础编程入门教程
- 2024-11-05Python编程基础:变量与类型
- 2024-11-05Python编程基础:变量与类型
- 2024-11-04Python编程基础:变量与类型