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))
mean of a list python
import numpy as np
np.mean(list)
np.std(list)
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
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