Let's say for example one wants to iterate through 3 list containing the same number of items. How would I be able to compare the items of same index and put the median of those in a new list called median list?
example output:
list_1 = [1,2,3]
list_2 = [1,3,5]
list_3 = [2,4,6]
median_list = [1, 3, 5]