-
div
returns the quotient of integer division -
mod
or%
returns the modulo -
rem
returns the remainder -
divrem
returns a tuple of two integers. The first value isdiv
, the secondrem
.
div
returns the quotient of integer division
mod
or %
returns the modulo
rem
returns the remainder
divrem
returns a tuple of two integers. The first value is div
, the second rem
.