Answers for "average value in list 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
0

mean of a list python

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

# By using the built-in statistics library
import statistics
statistics.mean(l)  # 20.11111111111111

# By defining a custom function
def average(my_list):
  return sum(my_list) / len(my_list)
average(l) # 20.11111111111111
Posted by: Guest on September-04-2021
1

python find average of list

# A function that finds an average of a list of numbers

numbers = [1,2,3,4,5,6,7,889,102390143]

def find_average(number_list):

    total = 0

    for number in number_list:
        total += number
    
    average = total / len(number_list)

    print("Your average is:", average)

find_average(numbers)
Posted by: Guest on December-12-2020

Code answers related to "average value in list python"

Python Answers by Framework

Browse Popular Code Answers by Language