在python中实现对list求和及求积
时间:2021-07-09 08:27:56|栏目:Python代码|点击: 次
如下所示:
# 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))
上一篇:Python解析excel文件存入sqlite数据库的方法
栏 目:Python代码
本文标题:在python中实现对list求和及求积
本文地址:http://www.codeinn.net/misctech/154898.html






