Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a729a1 commit abba5c0Copy full SHA for abba5c0
1 file changed
Doc/lib/libmath.tex
@@ -79,6 +79,14 @@ \section{\module{math} ---
79
second return value through an `output parameter' (there is no such
80
thing in Python).
81
82
+For the \function{ceil()}, \function{floor()}, and \function{modf()}
83
+functions, note that \emph{all} floating-point numbers of sufficiently
84
+large magnitude are exact integers. Python floats typically carry no more
85
+than 53 bits of precision (the same as the platform C double type), in
86
+which case any float \var{x} with \code{abs(\var{x}) >= 2**52}
87
+necessarily has no fractional bits.
88
+
89
90
Power and logarithmic functions:
91
92
\begin{funcdesc}{exp}{x}
0 commit comments