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