Name

ceil()

Examples
x = 8.22
a = ceil(x) # Sets 'a' to 9
Description Calculates the closest int value that is greater than or equal to the value of the parameter. For example, ceil(9.03) returns the value 10.
Syntax
ceil(n)
Parameters
nfloat: number to round up
Related floor()
round()

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.