Write python program to calculate the mean of a given list of numbers.
Answers
Answered by
1
4657 are the list of munbers
Answered by
0
Python Program to Calculate the Average of Numbers in a Given List
Take the number of elements to be stored in the list as input.
Use a for loop to input elements into the list.
Calculate the total sum of elements in the list.
Divide the sum by total number of elements in the list.
Exit.
Similar questions