La función Floor():
El método floor() en Python devuelve el piso de x, es decir, el entero más grande no mayor que x.
Syntax: import math math.floor(x) Parameter: x-numeric expression. Returns: largest integer not greater than x.
A continuación se muestra la implementación de Python del método floor():
Python
# Python program to demonstrate the use of floor() method # This will import math module import math # prints the ceil using floor() method print "math.floor(-23.11) : ", math.floor(-23.11) print "math.floor(300.16) : ", math.floor(300.16) print "math.floor(300.72) : ", math.floor(300.72)
Producción:
math.floor(-23.11) : -24.0 math.floor(300.16) : 300.0 math.floor(300.72) : 300.0
La función ceil():
El método ceil(x) en Python devuelve un valor máximo de x, es decir, el entero más pequeño mayor o igual que x.
Syntax: import math math.ceil(x) Parameter: x:This is a numeric expression. Returns: Smallest integer not less than x.
A continuación se muestra la implementación de Python del método ceil():
Python
# Python program to demonstrate the use of ceil() method # This will import math module import math # prints the ceil using ceil() method print "math.ceil(-23.11) : ", math.ceil(-23.11) print "math.ceil(300.16) : ", math.ceil(300.16) print "math.ceil(300.72) : ", math.ceil(300.72)
Producción:
math.ceil(-23.11) : -23.0 math.ceil(300.16) : 301.0 math.ceil(300.72) : 301.0