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))
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))
list mean python
# Python program to get average of a list
def Average(lst):
return sum(lst) / len(lst)
# Driver Code
lst = [15, 9, 55, 41, 35, 20, 62, 49]
average = Average(lst)
# Printing average of the list
print("Average of the list =", round(average, 2))
# Output:
# Average of the list = 35.75
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)
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
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)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us