python列表元素之和_python实现计算列表元素之和
目標(biāo):定義一個(gè)數(shù)字列表,并計(jì)算列表元素之和。
例如: 輸入 : [12, 15, 3, 10] 輸出 : 40
方法一:total = 0
list1 = [11, 5, 17, 18, 23]
for ele in range(0, len(list1)):
total = total + list1[ele]
print("列表元素之和為: ", total)
結(jié)果:列表元素之和為: 74
方法二:使用while()循環(huán)total = 0
ele = 0
list1 = [11, 5, 17, 18, 23]
while(ele < len(list1)):
total = total + list1[ele]
ele += 1
print("列表元素之和為: ", total)
以上實(shí)例輸出結(jié)果為:列表元素之和為: 74
方法三:使用遞歸list1 = [11, 5, 17, 18, 23]
def sumOfList(list, size):
if (size == 0):
return 0
else:
return list[size - 1] + sumOfList(list, size - 1)
total = sumOfList(list1, len(list1))
print("列表元素之和為: ", total)
結(jié)果:列表元素之和為: 74
以上就是python實(shí)現(xiàn)計(jì)算列表元素之和的詳細(xì)內(nèi)容,更多請關(guān)注隨便開發(fā)網(wǎng)其它相關(guān)文章!
總結(jié)
以上是生活随笔為你收集整理的python列表元素之和_python实现计算列表元素之和的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android四周阴影效果_帮助独立开发
- 下一篇: java中arraycopy的用法_[j