You are here : python_3statisticsstatisticsmedian_low

statistics.median_low() - statistics

Return the low median of numeric data.  If data is empty,
StatisticsError is raised.


Syntax

statistics.median_low(data)


Example

>>> median_low([1, 3, 5])
3
>>> median_low([1, 3, 5, 7])
3


Output / Return Value


Limitations


Alternatives / See Also


Reference