reduce函数

【Python】reduce函数的工作原理

reduce函数接受两个参数,一个是函数 f,一个是可迭代对象 iter。reduce函数会从 iter 中取出两个元素,将它们作为 f 的输入,得到 f 的输出。reduce函数会将 f 的输出和 iter 中的下一个元素作为 f 的新输入,再次得到 f 的

python 函数 reduce函数 2024-12-04 08:29  3