Thursday, 6 September 2018

11th Prog-22 Write a algorithm and python function program to find mean value in a list using function average(): Click Here



# Python program to get average of a list
def Average(lst):
    return sum(lst) / len(lst)

# Driver Code
lst = [15, 9, 55, 41, 35, 20, 62, 49]
average = Average(lst)

# Printing average of the list
print("Average of the list =", round(average, 2))


Example:


Average of the list = 35.75

No comments:

Post a Comment