![]() |
VOOZH | about |
In Python, math module contains a number of mathematical operations, which can be performed with ease using the module. math.floor() function returns the largest integer not greater than x. If number is already integer, same number is returned.
Syntax: math.floor(x) Parameter: x: This is a numeric expression. Returns: largest integer not greater than x. Time Complexity: O(1) Auxiliary Space: O(1)
Code #1:
The floor of 33.7 is : 33
Code #2:
math.floor(-13.1) : -14 math.floor(101.96) : 101