python median of list code example

Example 1: median of a list python

import statistics

lst = [1,3,6,13,27]
median_value = statistics.median(lst)
print(median_value)

Example 2: 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 3: how to get median mode average of a python list

>>> import statistics

>>> statistics.mode([4, 1, 2, 2, 3, 5])
2

>>> statistics.mode([4, 1, 2, 2, 3, 5, 4])
4

>>> statistics.mode(["few", "few", "many", "some", "many"])
'few'

Example 4: find the median of input number in a list and print

import statistics
array = []
n = int(input())
for _ in range(n):
    array.append(int(input()))
print (int(statistics.median(array)))