mirror of
https://github.com/python/cpython.git
synced 2026-01-07 07:52:29 +00:00
[3.13] gh-106318: Add example for str.format() (GH-137018) (#141903)
Co-authored-by: Adorilson Bezerra <adorilson@gmail.com>
This commit is contained in:
parent
a676b2e00f
commit
06db02ff1e
1 changed files with 7 additions and 1 deletions
|
|
@ -1858,10 +1858,16 @@ expression support in the :mod:`re` module).
|
|||
``{}``. Each replacement field contains either the numeric index of a
|
||||
positional argument, or the name of a keyword argument. Returns a copy of
|
||||
the string where each replacement field is replaced with the string value of
|
||||
the corresponding argument.
|
||||
the corresponding argument. For example:
|
||||
|
||||
.. doctest::
|
||||
|
||||
>>> "The sum of 1 + 2 is {0}".format(1+2)
|
||||
'The sum of 1 + 2 is 3'
|
||||
>>> "The sum of {a} + {b} is {answer}".format(answer=1+2, a=1, b=2)
|
||||
'The sum of 1 + 2 is 3'
|
||||
>>> "{1} expects the {0} Inquisition!".format("Spanish", "Nobody")
|
||||
'Nobody expects the Spanish Inquisition!'
|
||||
|
||||
See :ref:`formatstrings` for a description of the various formatting options
|
||||
that can be specified in format strings.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue