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