「Python」float(浮動小数点数)を四捨五入する

書式
round() 関数はfloat(浮動小数点数)を四捨五入します。
ceil() 関数はfloat(浮動小数点数)を切り上げます。
floor()関数はfloat(浮動小数点数)を切り捨てます

使用例

import math

print(round(5.4))
print(round(4.5))
print(math.ceil(3.4))
print(math.floor(6.5))

実行結果
5
4
4
6

Python

Posted by arkgame