Answers for "how to get average in python using math"

0

how to calculate mean in python

import statistics

a = [1,2,3,4,5]

mean = statistics.mean(a) 
#Similar for other values such as variance, standard deviation
Posted by: Guest on May-07-2020

Code answers related to "how to get average in python using math"

Python Answers by Framework

Browse Popular Code Answers by Language