Rounds the specified number down to the nearest integer.
int( number )
number: (Decimal) The number that will be rounded.
Integer
You can experiment with this function in the test box below.
Test Input
TEST
Test Output
int(31.5) returns 31
int(31.5)
31
On This Page