import numpy as np
np.mean(list)
np.std(list)
# 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))
# Output:
# Average of the list = 35.75
numbers = [3, 18, 2, 1, 70, 12, 36, 12, 78, 5, 6, 9]
import statistics
print(statistics.mean(numbers))
l = [15, 18, 2, 36, 12, 78, 5, 6, 9]
# By using the built-in statistics library
import statistics
statistics.mean(l) # 20.11111111111111
# By defining a custom function
def average(my_list):
return sum(my_list) / len(my_list)
average(l) # 20.11111111111111