Return the low median of numeric data. If data is empty, StatisticsError is raised.
statistics.median_low(data)
>>> median_low([1, 3, 5]) 3 >>> median_low([1, 3, 5, 7]) 3