Computer Science, asked by sreyashisinha870, 2 days ago

Write a Python Program to Calculate the Average of Numbers in a Given List

LIST= [ 44, 67 , 89, 91, 34 ,43, 76, 43, 61.3 , 34.5]​

Answers

Answered by srikantadash31
0

Answer:

take that help of Python

Answered by soumyojyoti77
2

def cal_average(num):

sum_num = 0

for t in num:

sum_num = sum_num + t

avg = sum_num / len(num)

return avg

print("The average is", cal_average([44, 67, 89, 91, 34, 43, 76, 43, 61.3, 34.5]))

Explanation:

Hope that it will be Helpful...

If there is anything wrong please forgive me...

Similar questions