How can I calculate the variance of a list in python?
问题 If I have a list like this: results=[-14.82381293, -0.29423447, -13.56067979, -1.6288903, -0.31632439, 0.53459687, -1.34069996, -1.61042692, -4.03220519, -0.24332097] I want to calculate the variance of this list in Python which is the average of the squared differences from the mean. How can I go about this? Accessing the elements in the list to do the computations is confusing me for getting the square differences. 回答1: You can use numpy's built-in function var: import numpy as np results =