Answers for "how to find the average of a no. in python"

8

python average

def avrg(values): # where values is a list of all values
  return sum(values)/len(values)
Posted by: Guest on March-27-2021
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))
Posted by: Guest on March-20-2020

Code answers related to "how to find the average of a no. in python"

Python Answers by Framework

Browse Popular Code Answers by Language