copipe Python | 平均と標準偏差を計算する。

概要

statisticsを使うと、平均mean(リスト)と標準偏差stdev(リスト)を計算することができる。

コード

import statistics
x = [1, 2, 3, 5, 9, 12]
m = statistics.mean(x)
s = statistics.stdev(x)
print(m, s)

結果

5.333333333333333 4.320493798938574