Thursday, October 23, 2025
HomeLanguagesPython Program to Find Sum of All Array Elements

Python Program to Find Sum of All Array Elements

Sum of array elements in python; Through this tutorial, you will learn how to sum of all array elements in a python program.

.medrectangle-3-multi-320{border:none!important;display:block!important;float:none!important;line-height:0;margin-bottom:15px!important;margin-left:auto!important;margin-right:auto!important;margin-top:15px!important;max-width:100%!important;min-height:250px;min-width:250px;padding:0;text-align:center!important;width:100%}

Python Program to Find Sum of All Array Elements

  • Python Program to find Sum of Elements in a List using sum function
  • Program to find Sum of Elements in a List without using for loop
  • Program to find Sum of Elements in a List without using while loop
  • Python Program to Calculate Sum of all Elements in a List using Functions

Python Program to find Sum of Elements in a List Using sum function

# Python Program to find Sum of all Elements in a List using sum function

NumList = []

Number = int(input("Please enter the Total Number of List Elements : "))

for i in range(1, Number + 1):
    value = int(input("Please enter the Value of %d Element : " %i))
    NumList.append(value)

total = sum(NumList)

print("\n The Sum of All Element in this List is : ", total)

After executing the program, the output will be:

Please enter the Total Number of List Elements :  5

Please enter the Value of 1 Element :  10
Please enter the Value of 2 Element :  56
Please enter the Value of 3 Element :  5
Please enter the Value of 4 Element :  44
Please enter the Value of 5 Element :  57

 The Sum of All Element in this List is :  172

Program to find Sum of Elements in a List without using for loop

# Python Program to find Sum of all Elements in a List using for loop

NumList = []
total = 0

Number = int(input("Please enter the Total Number of List Elements : "))
for i in range(1, Number + 1):
    value = int(input("Please enter the Value of %d Element : " %i))
    NumList.append(value)

for j in range(Number):
    total = total + NumList[j]

print("\n The Sum of All Element in this List is : ", total)

After executing the program, the output will be:

Please enter the Total Number of List Elements :  4
Please enter the Value of 1 Element :  10
Please enter the Value of 2 Element :  20
Please enter the Value of 3 Element :  30
Please enter the Value of 4 Element :  40

The Sum of All Element in this List is :  100

Python Program to Calculate Sum of Elements in a List using While loop

# Python Program to find Sum of all Elements in a List using while loop

NumList = []
total = 0
j = 0

Number = int(input("Please enter the Total Number of List Elements : "))
for i in range(1, Number + 1):
    value = int(input("Please enter the Value of %d Element : " %i))
    NumList.append(value)

while(j < Number):
    total = total + NumList[j]
    j = j + 1
print("\n The Sum of All Element in this List is : ", total)

After executing the program, the output will be:

Please enter the Total Number of List Elements :  3
Please enter the Value of 1 Element :  1
Please enter the Value of 2 Element :  2
Please enter the Value of 3 Element :  3

The Sum of All Element in this List is :  6

Python Program to Calculate Sum of all Elements in a List using Functions

# Python Program to find Sum of all Elements in a List using function

def sum_of_list(NumList):
    total = 0
    for j in range(Number):
        total = total + NumList[j]
    return total


NumList = []
Number = int(input("Please enter the Total Number of List Elements : "))
for i in range(1, Number + 1):
    value = int(input("Please enter the Value of %d Element : " %i))
    NumList.append(value)

total = sum_of_list(NumList)
print("\n The Sum of All Element in this List is : ", total)

After executing the program, the output will be:

Please enter the Total Number of List Elements :  5
Please enter the Value of 1 Element :  5
Please enter the Value of 2 Element :  10
Please enter the Value of 3 Element :  52
Please enter the Value of 4 Element :  53
Please enter the Value of 5 Element :  88

The Sum of All Element in this List is :  208

Recommended Python Array Programs

  1. Python Program to Find the GCD of Two Numbers or Array
  2. Python Program to Find Sum of All Array Elements
  3. Python Count the Occurrences in an Array
  4. Python: Find the Union and Intersection of Two Arrays
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS