]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-106318: Add example for str.format() (#137018)
authorAdorilson Bezerra <adorilson@gmail.com>
Mon, 24 Nov 2025 14:51:10 +0000 (14:51 +0000)
committerGitHub <noreply@github.com>
Mon, 24 Nov 2025 14:51:10 +0000 (16:51 +0200)
Doc/library/stdtypes.rst

index 3f34245d8daf138fbf90e49c8acc800ab37e7821..f4ebbbd8f9c53610fd6fcc8e52be699bac6b2037 100644 (file)
@@ -1994,10 +1994,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.