python list mean code example
Example 1: list mean python
def Average(lst):
return sum(lst) / len(lst)
lst = [15, 9, 55, 41, 35, 20, 62, 49]
average = Average(lst)
print("Average of the list =", round(average, 2))
Example 2: 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 3: find average of list python
list = [15, 18, 2, 36, 12, 78, 5, 6, 9]
average_method_one = sum(list) / len(list)
average_method_two = sum(list) / float(len(list))
print(average_method_one)
print(average_method_two)
Example 4: mean of a list python
import numpy as np
np.mean(list)
np.std(list)
Example 5: python mean
import numpy as np
np.mean(your_list)
np.median()
np.std()
np.var()
Example 6: how to find the average in python
import numpy
avreage_1 = numpy.mean(avreage)
print("words are printed here if needed",avreage_1)