int


機能:
四捨五入後整数値を返す

書式:
int(d)

解説:
引数dを四捨五入した整数を返します。

例: #1 = int(-2.3); → -2

#1 = int(-2.5); → -3


return