diff --git a/sum.py b/sum.py new file mode 100644 index 0000000..98d242d --- /dev/null +++ b/sum.py @@ -0,0 +1,13 @@ +# 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)