📜  numpy 如何计算方差 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:26.114000             🧑  作者: Mango

代码示例1
import numpy
numbers = [50,66,77,88,99,100]
x = numpy.var(numbers)
print(x)