how to find the mean of a list in 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: python average
import statistics as st
my_list = [9, 3, 1, 5, 88, 22, 99]
print(st.mean(my_list))
Example 3: mean of a list python
import numpy as np
np.mean(list)
np.std(list)
Example 4: python find average of list
numbers = [1,2,3,4,5,6,7,889,102390143]
def find_average(number_list):
total = 0
for number in number_list:
total += number
average = total / len(number_list)
print("Your average is:", average)
find_average(numbers)