This is a Python Program to Calculate the Average of Numbers in a Given List.
Problem Description
The program takes the elements of the list one by one and displays the average of the elements of the list.
Problem Solution
1. Take the number of elements to be stored in the list as input.
2. Use a for loop to input elements into the list.
3. Calculate the total sum of elements in the list.
4. Divide the sum by total number of elements in the list.
5. Exit.
Program/Source Code
Here is source code of the Python Program to Calculate the Average of Numbers in a Given List. The program output is also shown below.
n=int(input(“Enter the number of elements to be inserted: “))
a=[]
for i in range(0,n):
elem=int(input(“Enter element: “))
a.append(elem)
avg=sum(a)/n
print(“Average of elements in the list”,round(avg,2))