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