当前位置:   article > 正文

【python】强大而有用的工具内置迭代工具 itertools - accumulate【叠加,叠乘等快速操作】(3)_python叠乘

python叠乘

项目场景:

需求:快速实现一个列表数据的叠加,跌乘等操作。


问题描述

代码如下

# coding=utf-8
# 作者:Administrator
# 创建时间:2022 2022/5/9 9:32
# IDE:PyCharm
# 描述:多个可迭代对象构建成一个新的可迭代对象
import operator
from itertools import accumulate

# exp1 :
list1 = [1, 2, 3, 4, 3]

print(list(accumulate(list1)))  # 默认是叠加的操作[1, 3, 6, 10, 13]
print(list(accumulate(list1, min)))  # 返回当前项的最小值 [1, 1, 1, 1, 1]
print(list(accumulate(list1, max)))  # 返回当前项的最大值[1, 2, 3, 4, 4]
print(list(accumulate(list1, operator.mul)))  # 叠乘的操作[1, 2, 6, 24, 72]  ,操作的内容就是[1,1*2,1*2*3,1*2*3*4,1*2*3*4*3]
print(list(accumulate(list1, operator.add)))  # 叠加
print(operator.mul(2000000000000000000000000,300000000000000000000000))# 计算两个数值的乘积 600000000000000000000000000000000000000000000000
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17


解决方案:

强大而有用的工具内置迭代工具 itertools - accumulate【叠加,叠乘等快速操作】,可以让你的代码简单,可读性强

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/212750
推荐阅读
相关标签
  

闽ICP备14008679号