代码示例:(标识:python_ml_numpy_std_2)
python_ml_numpy_std_2.py
import numpy

speed = [32,111,138,28,59,77,97]

x = numpy.std(speed)

print(x)
运行结果: