Return the median float of the list list that returns class float as type code example
Example: 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)))