Answers for "average function python list"

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
4

mean of a list python

import numpy as np
np.mean(list)
np.std(list)
Posted by: Guest on January-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language