📜  python代码示例中列表中数字的总和

📅  最后修改于: 2022-03-11 14:47:07.676000             🧑  作者: Mango

代码示例1
# Python program to find sum of elements in list
total = 0
 
# creating a list
list1 = [11, 5, 17, 18, 23]
 
# Iterate each element in list
# and add them in variable total
for ele in range(0, len(list1)):
    total = total + list1[ele]
 
# printing total value
print("Sum of all elements in given list: ", total)