En Python, el módulo de matemáticas contiene una serie de operaciones matemáticas, que se pueden realizar con facilidad utilizando el módulo. math.ceil()
La función devuelve el valor integral más pequeño mayor que el número. Si número ya es entero, se devuelve el mismo número.
Syntax: math.ceil(x) Parameter: x: This is a numeric expression. Returns: Smallest integer not less than x.
Código #1:
# Python code to demonstrate the working of ceil() # importing "math" for mathematical operations import math x = 33.7 # returning the ceil of 33.7 print ("The ceil of 33.7 is : ", end ="") print (math.ceil(x))
Producción:
The ceil of 33.7 is : 34
Código #2:
# Python code to demonstrate the working of ceil() # importing "math" for mathematical operations import math # prints the ceil using ceil() method print ("math.ceil(-13.1) : ", math.ceil(-13.1)) print ("math.ceil(101.96) : ", math.ceil(101.96))
Producción:
math.ceil(-13.1) : -13 math.ceil(101.96) : 102