Answers for "Python: Average Function"

1

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))
Posted by: Guest on March-20-2020
0

calculate mean on python

def calculate_mean(n):
    s = sum(n)
    N = len(n)
    
    mean = s / N
    
    return mean
Posted by: Guest on December-28-2020

Code answers related to "Python: Average Function"

Python Answers by Framework

Browse Popular Code Answers by Language