find mean of list python code example
Example 1: average value of list elements in python
number_list = [45, 34, 10, 36, 12, 6, 80]
avg = sum(number_list)/len(number_list)
print("The average is ", round(avg,2))
Example 2: mean of a list python
import numpy as np
np.mean(list)
np.std(list)
Example 3: calcutalte average python
def averageOfList(num):
sumOfNumbers = 0
for t in num:
sumOfNumbers = sumOfNumbers + t
avg = sumOfNumbers / len(num)
return avg
print("The average of List is", averageOfList([19, 21, 46, 11, 18]))
Example 4: how to find the average in python
import numpy
avreage_1 = numpy.mean(avreage)
print("words are printed here if needed",avreage_1)