Skip to content

Commit

Permalink
bpo-43729: Clarify comment in tutorial example (GH-25191)
Browse files Browse the repository at this point in the history
  • Loading branch information
Erlend Egeberg Aasland committed May 14, 2021
1 parent dc0b364 commit 0779712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/tutorial/introduction.rst
Expand Up @@ -73,7 +73,7 @@ operator; to calculate the remainder you can use ``%``::
5
>>> 17 % 3 # the % operator returns the remainder of the division
2
>>> 5 * 3 + 2 # result * divisor + remainder
>>> 5 * 3 + 2 # floored quotient * divisor + remainder
17

With Python, it is possible to use the ``**`` operator to calculate powers [#]_::
Expand Down

0 comments on commit 0779712

Please sign in to comment.