mirror of
https://github.com/python/cpython.git
synced 2025-09-28 03:13:48 +00:00
#8556: use less confusing mapping key in example.
This commit is contained in:
parent
20f11fe43c
commit
edc9e7ff17
1 changed files with 2 additions and 3 deletions
|
@ -1414,9 +1414,8 @@ formats in the string *must* include a parenthesised mapping key into that
|
|||
dictionary inserted immediately after the ``'%'`` character. The mapping key
|
||||
selects the value to be formatted from the mapping. For example:
|
||||
|
||||
|
||||
>>> print('%(language)s has %(#)03d quote types.' % \
|
||||
... {'language': "Python", "#": 2})
|
||||
>>> print('%(language)s has %(number)03d quote types.' %
|
||||
... {'language': "Python", "number": 2})
|
||||
Python has 002 quote types.
|
||||
|
||||
In this case no ``*`` specifiers may occur in a format (since they require a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue