En Python, el módulo de matemáticas contiene una serie de operaciones matemáticas, que se pueden realizar con facilidad usando el módulo. math.floor()
La función devuelve el entero más grande no mayor que x. Si número ya es entero, se devuelve el mismo número.
Syntax: math.floor(x) Parameter: x: This is a numeric expression. Returns: largest integer not greater than x.
Código #1:
# Python code to demonstrate the working of floor() # importing "math" for mathematical operations import math x = 33.7 # returning the floor of 33.7 print ("The floor of 33.7 is : ", end ="") print (math.floor(x))
Producción:
The floor of 33.7 is : 33
Código #2:
# Python code to demonstrate the working of floor() # importing "math" for mathematical operations import math # prints the floor using floor() method print ("math.floor(-13.1) : ", math.floor(-13.1)) print ("math.floor(101.96) : ", math.floor(101.96))
Producción:
math.floor(-13.1) : -14 math.floor(101.96) : 101