您好,登錄后才能下訂單哦!
本篇文章展示了python計算列表元素和的方法,代碼簡明扼要容易理解,如果在日常工作遇到這個疑問。希望大家通過這篇文章,找到解決疑問的辦法。
目標:定義一個數(shù)字列表,并計算列表元素之和。
例如: 輸入 : [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)
以上實例輸出結(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
看完上述內(nèi)容,你們掌握python計算列表元素和的方法了嗎?如果還想學到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。