python program to find mean median and mode code example
Example 1: how to get median mode average of a python list
>>> import statistics
>>> statistics.median([3, 5, 1, 4, 2])
3
>>> statistics.median([3, 5, 1, 4, 2, 6])
3.5
Example 2: python finding mode of a list
import random
numbers = []
limit = int(input("Please enter how many numbers you would like to compare:\n"))
mode =0
for i in range(0,limit):
numbers.append(random.randint(1,10))
maxiumNum = max(numbers)
j = maxiumNum + 1
count = [0]*j
for i in range(j):
count[i]=0
for i in range(limit):
count[numbers[i]] +=1
n = count[0]
for i in range(1, j):
if (count[i] > n):
n = count[i]
mode = i
print("This is the mode = "+str(mode))
print("This is the array = "+str(numbers))