Computer Science, asked by vinay2461, 7 days ago

Write the program to find mean of elements of the list.
answer the ques. and win 12 points.

Answers

Answered by kiran957bala
0

Answer:

sum of all the numbers divided by total number

Answered by dhruvikasingh1590
0

Input : [4, 5, 1, 2, 9, 7, 10, 8]

Output : Average of the list = 5.75

Explanation:

Sum of the elements is 4+5+1+2+9+7+10+8 = 46

and total number of elements is 8.

So average is 46 / 8 = 5.75

Input : [15, 9, 55, 41, 35, 20, 62, 49]

Output : Average of the list = 35.75

Explanation:

Sum of the elements is 15+9+55+41+35+20+62+49 = 286

and total number of elements is 8.

So average is 46 / 8 = 35.75

Similar questions