Answers for "calculate average of values in python"

5

python average

def avrg(values): # where values is a list of all values
  return sum(values)/len(values)
Posted by: Guest on March-27-2021
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 "calculate average of values in python"

Python Answers by Framework

Browse Popular Code Answers by Language