avg python 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: 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 3: python avg
my_list = [1,2,3,4]
import numpy as np
print("mean = ", np.mean(my_list))
Example 4: python average
def avrg(values):
return sum(values)/len(values)
Example 5: how to use a function to find the average in python
avreage_cost = cost
avg = sum(avreage)/len(avreage)
print("The average amout you spent is ", round(avg,2))
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)