round関数


round関数は引数(実数)を四捨五入した実数を返します。int関数では実数は切り捨てられます。

>>> round(5.5)
6.0
>>> int(5.5)
5

 

 

 

ホーム