在python中实现对list求和及求积
作者:强哥之神 时间:2022-05-28 15:02:16
如下所示:
# the basic way
s = 0
for x in range(10):
s += x
# the right way
s = sum(range(10))
# the basic way
s = 1
for x in range(1, 10):
s *= x
# the other way
from operator import mul
reduce(mul, range(1, 10))
来源:https://blog.csdn.net/qianggezhishen/article/details/46532441
标签:python,list,求和,求积
0
投稿
猜你喜欢
如何远程连接SQL Server数据库
2009-06-08 12:41:00
PHP表单验证内容是否为空的实现代码
2024-05-13 09:51:21
Python创建多线程的两种常用方法总结
2023-11-16 16:41:09
微软SQLServer密码管理的危险判断
2008-11-24 17:34:00
在PYQT5中QscrollArea(滚动条)的使用方法
2023-03-07 06:29:51
SQL Server 2000里的数据类型
2011-06-11 14:07:00
浅谈Python 敏感词过滤的实现
2022-12-11 07:47:17
基于FlashPaper实现JSP在线阅读代码示例
2023-06-14 21:02:31
Pycharm设置去除显示的波浪线方法
2022-06-29 16:04:59
使用uni-app开发微信小程序的实现
2024-05-13 09:10:42
Python导入自定义路径的方法
2021-06-30 13:43:28
python实现抽奖小程序
2022-06-10 14:14:29
深入理解Tensorflow中的masking和padding
2022-01-26 02:21:44
一文弄懂MYSQL如何列转行
2024-01-17 18:05:21
关于ASP eof与bof 区别分析
2011-03-11 11:14:00
python中的不可变数据类型与可变数据类型详解
2022-12-27 21:56:24
Django 查询数据库并返回页面的例子
2024-01-15 20:08:37
ASP 错误代码
2009-05-11 12:38:00
GDAL 矢量属性数据修改方式(python)
2021-01-30 20:53:28
pyinstaller还原python代码过程图解
2022-04-09 10:06:59