アットウィキロゴ

ぴいい2

import numpy as np
x = [96, 63, 85, 66, 91, 89, 77]
ave = np.average(x)
total = 0
for i in range(len(x)):
    total += (x[i] - ave)**2
print (np.sqrt(total/len(x)))
最終更新:2018年01月10日 22:03