python math average 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: python average

# Using statistics package to find average
import statistics as st

my_list = [9, 3, 1, 5, 88, 22, 99]
print(st.mean(my_list))

Example 3: python average

def avrg(values): # where values is a list of all values
  return sum(values)/len(values)

Example 4: 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

Example 5: calculate mean on python

def calculate_mean(n):
    s = sum(n)
    N = len(n)
    
    mean = s / N
    
    return mean

Example 6: 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