__floor__()
Returns the greatest int
<= self
. This method can also be accessed through the math.floor()
function:
>>> from math import floor >>> floor(Fraction(355, 113)) 3
__floor__()
Returns the greatest int
<= self
. This method can also be accessed through the math.floor()
function:
>>> from math import floor >>> floor(Fraction(355, 113)) 3
Please login to continue.