.. function:: ceil(x)
- Return the ceiling of *x* as a float, the smallest integer value greater than
- or equal to *x*. If *x* is not a float, delegates to ``x.__ceil__()``, which
- should return an :class:`Integral` value.
+ Return the ceiling of *x*, the smallest integer greater than or equal to *x*.
+ If *x* is not a float, delegates to ``x.__ceil__()``, which should return an
+ :class:`Integral` value.
.. function:: copysign(x, y)
.. function:: floor(x)
- Return the floor of *x* as a float, the largest integer value less than or
- equal to *x*. If *x* is not a float, delegates to ``x.__floor__()``, which
- should return an :class:`Integral` value.
+ Return the floor of *x*, the largest integer less than or equal to *x*.
+ If *x* is not a float, delegates to ``x.__floor__()``, which should return an
+ :class:`Integral` value.
.. function:: fmod(x, y)
Power and logarithmic functions:
-
.. function:: exp(x)
Return ``e**x``.