def median_low(text): """ Finds the low median of a space-separated list of numbers. Example:: /median low 33 54 43 65 43 62 """ return format_output(statistics.median_low(parse_numeric_list(text)))