average a 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: 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 4: python get average of list
def average(list):
result = sum(list) / len(list)
return result
list = [68,68,71,71,71,75,71,78,91,98,75,71,84]
print(average(list))
Example 5: 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)