CBSE Class 11 Computer Science
Question 27 of 63
Introduction to Python Modules — Question 8
Back to all questions38.5
Reason — The statistics.median() function calculates the median of a list of numbers. For the list [11, 22, 33, 44, 55, 66], which contains an even number of elements, the median is the average of the two middle numbers. The two middle numbers are 33 and 44, so the median is (33 + 44) / 2 = 38.5.