__floor__()
Returns the greatest int
<= self
. This method can also be accessed through the math.floor()
function:
1 2 3 | >>> 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:
1 2 3 | >>> from math import floor >>> floor(Fraction(355, 113)) 3 |
Designed by : w10schools
service@w10schools.com
Please login to continue.