mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Mention % as string formatting.
This commit is contained in:
parent
448f20b8b1
commit
f1d633c386
1 changed files with 3 additions and 0 deletions
|
@ -1300,6 +1300,7 @@ groups from right to left).
|
|||
| ``+``, ``-`` | Addition and subtraction |
|
||||
+-----------------------------------------------+-------------------------------------+
|
||||
| ``*``, ``/``, ``//``, ``%`` | Multiplication, division, remainder |
|
||||
| | [#]_ |
|
||||
+-----------------------------------------------+-------------------------------------+
|
||||
| ``+x``, ``-x``, ``~x`` | Positive, negative, bitwise NOT |
|
||||
+-----------------------------------------------+-------------------------------------+
|
||||
|
@ -1342,5 +1343,7 @@ groups from right to left).
|
|||
the :keyword:`is` operator, like those involving comparisons between instance
|
||||
methods, or constants. Check their documentation for more info.
|
||||
|
||||
.. [#] The ``%`` is also used for string formatting; the same precedence applies.
|
||||
|
||||
.. [#] The power operator ``**`` binds less tightly than an arithmetic or
|
||||
bitwise unary operator on its right, that is, ``2**-1`` is ``0.5``.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue