Answers for "find the average python"

5

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
-1

average python

def cal_average(num):
    sum_num = 0
    for t in num:
        sum_num = sum_num + t           

    avg = sum_num / len(num)
    return avg

print("The average is", cal_average([18,25,3,41,5]))
Posted by: Guest on March-18-2021

Code answers related to "find the average python"

Python Answers by Framework

Browse Popular Code Answers by Language