find average in 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: 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 3: 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))