calculate mean from list python code example
Example 1: average python
import numpy as np
values=[1,10,100]
print(np.mean(values))
values=[1,10,100,np.nan]
print(np.nanmean(values))
Example 2: find average of list python
list = [15, 18, 2, 36, 12, 78, 5, 6, 9]
average_method_one = sum(list) / len(list)
average_method_two = sum(list) / float(len(list))
print(average_method_one)
print(average_method_two)
Example 3: python average
import statistics as st
my_list = [9, 3, 1, 5, 88, 22, 99]
print(st.mean(my_list))