python3の四捨五入でハマったのでメモ - Qiita

python2の四捨五入四捨五入にはround()を使います。>>> round(1.5)2.0>>> round(2.5)3.0>>> round(10.0/3, 0)3.0一般的…