Table of contents — Statistical functions Averages and measures of central location Measures of Spread Statistical distributions Discrete distributions Continuous distributions Law of Large Numbers Central Limit Theorem Statistical functions Averages and measures of central location Mean The mean is the sum of all values divided by the number of values. import statistics as st
x = [4,5,1,2,7,2,6,9,3,7,2]
print('Mean:', st.mean(x))