In this python program we will learn to calculate the average of number for N numbers.
Average is the sum of items divided by the number of items.
Here, we’ll calculate the sum and average of a natural number as listed by the user.
-
Algorithm:
- Input the numbers from the user.
- Initialize sum =0.
- Using for loop, calculate sum and average of the numbers.
- Print average of the list.
- Exit
Code:
n=int(input("Enter the total number you want to enter:"))
sum=0
for i in range(n):
x=int(input("Enter the number:"))
sum=sum+x
avg=sum/n
print("Average=",avg)
Output:
Enter the total number you want to enter:4
Enter the number:2
Enter the number:4
Enter the number:6
Enter the number:8
Average= 5.0
Report Error/ Suggestion