average function for list in python code example
Example 1: average value of list elements in python
# Example to find average of list
number_list = [45, 34, 10, 36, 12, 6, 80]
avg = sum(number_list)/len(number_list)
print("The average is ", round(avg,2))
Example 2: mean of a list python
import numpy as np
np.mean(list)
np.std(list)