Answers for "avg in python"

12

average value of list elements in python

# Example to find average of list
number_list = [45, 34, 10, 36, 12, 6, 80]
avg = sum(number_list)/len(number_list)
print("The average is ", round(avg,2))
Posted by: Guest on February-14-2020
1

python average

def Average(nums):
    return sum(nums) / len(nums) 

lis = []

for x in range(100000):
  nums =int(input("enter numbers: "))
  command = input()
  lis.append(nums)
  if command == "e":
    break



output = Average(lis)

print("the average is ",output)
Posted by: Guest on November-18-2021
4

find average of list python

list = [15, 18, 2, 36, 12, 78, 5, 6, 9]

# for older versions of python
average_method_one = sum(list) / len(list) 
# for python 2 convert len to a float to get float division
average_method_two = sum(list) / float(len(list))

# round answers using round() or ceil()
print(average_method_one)
print(average_method_two)
Posted by: Guest on October-03-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language