Answers for "how to calculation average in python"

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
0

how to find the average in python

import numpy

 avreage_1 = numpy.mean(avreage)# this finds the mean from the array "cost"
    print("words are printed here if needed",avreage_1) # this prints the mean that was found above
Posted by: Guest on March-21-2020

Code answers related to "how to calculation average in python"

Python Answers by Framework

Browse Popular Code Answers by Language