numpy bagaimana menghitung varian

import numpy
numbers = [50,66,77,88,99,100]
x = numpy.var(numbers)
print(x)
Determined Dragonfly