Kaydet (Commit) edc9e7ff authored tarafından Georg Brandl's avatar Georg Brandl

#8556: use less confusing mapping key in example.

üst 20f11fe4
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment