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 0df87d5 commit 3ab4422Copy full SHA for 3ab4422
1 file changed
Doc/library/math.integer.rst
@@ -64,8 +64,9 @@ computed exactly and are integers.
64
65
.. function:: isqrt_rem(n, /)
66
67
- Return a pair of values (s,t) such that s=isqrt(n) and t=n-s*s.
68
- The remainder *t* will be zero, if *n* is a perfect square.
+ For a nonnegative integer *n*, return the pair of integers ``(s, t)``
+ such that ``s = isqrt(n)`` and ``t = n - s*s``.
69
+ The remainder *t* is zero, if *n* is a perfect square.
70
71
72
.. function:: lcm(*integers)
0 commit comments