目标:定义一个数字列表,并计算列表元素之和。
例如: 输入 : [12, 15, 3, 10] 输出 : 40
方法一:
total = 0
pst1 = [11, 5, 17, 18, 23]
for ele in range(0, len(pst1)):
total = total + pst1[ele]
print("列表元素之和为: ", total)
结果:
列表元素之和为: 74
方法二:使用while()循环
total = 0
ele = 0
pst1 = [11, 5, 17, 18, 23]
while(ele < len(pst1)):
total = total + pst1[ele]
ele += 1
print("列表元素之和为: ", total)
以上就是小编分享的关于python实现计算列表元素之和的详细内容希望对大家有所帮助,更多有关python教程请关注环球青藤其它相关文章!