Answers for "how to get the mean of a list 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
4

mean of a list python

import numpy as np
np.mean(list)
np.std(list)
Posted by: Guest on January-23-2021
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
Posted by: Guest on January-20-2021

Code answers related to "how to get the mean of a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language