blob: c421c72d758f0cae47048d4e51e115c7257d0de2 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`string` --- Common string operations
2==========================================
3
4.. module:: string
5 :synopsis: Common string operations.
6
Éric Araujo19f9b712011-08-19 00:49:18 +02007**Source code:** :source:`Lib/string.py`
8
9--------------
Georg Brandl116aa622007-08-15 14:28:22 +000010
Éric Araujo6e6cb8e2010-11-16 19:13:50 +000011.. seealso::
12
Ezio Melottia6229e62012-10-12 10:59:14 +030013 :ref:`textseq`
Georg Brandlb30f3302011-01-06 09:23:56 +000014
15 :ref:`string-methods`
16
Georg Brandl116aa622007-08-15 14:28:22 +000017String constants
18----------------
19
20The constants defined in this module are:
21
22
23.. data:: ascii_letters
24
25 The concatenation of the :const:`ascii_lowercase` and :const:`ascii_uppercase`
26 constants described below. This value is not locale-dependent.
27
28
29.. data:: ascii_lowercase
30
31 The lowercase letters ``'abcdefghijklmnopqrstuvwxyz'``. This value is not
32 locale-dependent and will not change.
33
34
35.. data:: ascii_uppercase
36
37 The uppercase letters ``'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``. This value is not
38 locale-dependent and will not change.
39
40
41.. data:: digits
42
43 The string ``'0123456789'``.
44
45
46.. data:: hexdigits
47
48 The string ``'0123456789abcdefABCDEF'``.
49
50
51.. data:: octdigits
52
53 The string ``'01234567'``.
54
55
56.. data:: punctuation
57
58 String of ASCII characters which are considered punctuation characters
59 in the ``C`` locale.
60
61
62.. data:: printable
63
64 String of ASCII characters which are considered printable. This is a
65 combination of :const:`digits`, :const:`ascii_letters`, :const:`punctuation`,
66 and :const:`whitespace`.
67
68
69.. data:: whitespace
70
Georg Brandl50767402008-11-22 08:31:09 +000071 A string containing all ASCII characters that are considered whitespace.
Georg Brandl116aa622007-08-15 14:28:22 +000072 This includes the characters space, tab, linefeed, return, formfeed, and
73 vertical tab.
74
75
Georg Brandl4b491312007-08-31 09:22:56 +000076.. _string-formatting:
77
Martin Panterd5db1472016-02-08 01:34:09 +000078Custom String Formatting
79------------------------
Georg Brandl4b491312007-08-31 09:22:56 +000080
Benjamin Peterson50923f92008-05-25 19:45:17 +000081The built-in string class provides the ability to do complex variable
Martin Panterd5db1472016-02-08 01:34:09 +000082substitutions and value formatting via the :meth:`~str.format` method described in
Benjamin Peterson50923f92008-05-25 19:45:17 +000083:pep:`3101`. The :class:`Formatter` class in the :mod:`string` module allows
84you to create and customize your own string formatting behaviors using the same
Martin Panterd5db1472016-02-08 01:34:09 +000085implementation as the built-in :meth:`~str.format` method.
Georg Brandl4b491312007-08-31 09:22:56 +000086
Benjamin Peterson1baf4652009-12-31 03:11:23 +000087
Georg Brandl4b491312007-08-31 09:22:56 +000088.. class:: Formatter
89
90 The :class:`Formatter` class has the following public methods:
91
Georg Brandl8e490de2011-01-24 19:53:18 +000092 .. method:: format(format_string, *args, **kwargs)
Georg Brandl4b491312007-08-31 09:22:56 +000093
Martin Panterd5db1472016-02-08 01:34:09 +000094 The primary API method. It takes a format string and
R David Murraye56bf972012-08-19 17:26:34 -040095 an arbitrary set of positional and keyword arguments.
Martin Panterd5db1472016-02-08 01:34:09 +000096 It is just a wrapper that calls :meth:`vformat`.
Georg Brandl4b491312007-08-31 09:22:56 +000097
Serhiy Storchakab876df42015-03-24 22:30:46 +020098 .. deprecated:: 3.5
99 Passing a format string as keyword argument *format_string* has been
100 deprecated.
101
Georg Brandl4b491312007-08-31 09:22:56 +0000102 .. method:: vformat(format_string, args, kwargs)
Georg Brandl48310cd2009-01-03 21:18:54 +0000103
Georg Brandl4b491312007-08-31 09:22:56 +0000104 This function does the actual work of formatting. It is exposed as a
105 separate function for cases where you want to pass in a predefined
106 dictionary of arguments, rather than unpacking and repacking the
Ezio Melotti28c88f42012-11-27 19:17:57 +0200107 dictionary as individual arguments using the ``*args`` and ``**kwargs``
R David Murraye56bf972012-08-19 17:26:34 -0400108 syntax. :meth:`vformat` does the work of breaking up the format string
109 into character data and replacement fields. It calls the various
Georg Brandl4b491312007-08-31 09:22:56 +0000110 methods described below.
111
112 In addition, the :class:`Formatter` defines a number of methods that are
113 intended to be replaced by subclasses:
114
115 .. method:: parse(format_string)
Georg Brandl48310cd2009-01-03 21:18:54 +0000116
Georg Brandl4b491312007-08-31 09:22:56 +0000117 Loop over the format_string and return an iterable of tuples
118 (*literal_text*, *field_name*, *format_spec*, *conversion*). This is used
Georg Brandl70cd7bc2010-10-26 19:31:06 +0000119 by :meth:`vformat` to break the string into either literal text, or
Georg Brandl4b491312007-08-31 09:22:56 +0000120 replacement fields.
Georg Brandl48310cd2009-01-03 21:18:54 +0000121
Georg Brandl4b491312007-08-31 09:22:56 +0000122 The values in the tuple conceptually represent a span of literal text
123 followed by a single replacement field. If there is no literal text
124 (which can happen if two replacement fields occur consecutively), then
125 *literal_text* will be a zero-length string. If there is no replacement
126 field, then the values of *field_name*, *format_spec* and *conversion*
127 will be ``None``.
128
Eric Smith9d4ba392007-09-02 15:33:26 +0000129 .. method:: get_field(field_name, args, kwargs)
Georg Brandl4b491312007-08-31 09:22:56 +0000130
131 Given *field_name* as returned by :meth:`parse` (see above), convert it to
Georg Brandl7f13e6b2007-08-31 10:37:15 +0000132 an object to be formatted. Returns a tuple (obj, used_key). The default
133 version takes strings of the form defined in :pep:`3101`, such as
134 "0[name]" or "label.title". *args* and *kwargs* are as passed in to
135 :meth:`vformat`. The return value *used_key* has the same meaning as the
136 *key* parameter to :meth:`get_value`.
Georg Brandl4b491312007-08-31 09:22:56 +0000137
138 .. method:: get_value(key, args, kwargs)
Georg Brandl48310cd2009-01-03 21:18:54 +0000139
Georg Brandl4b491312007-08-31 09:22:56 +0000140 Retrieve a given field value. The *key* argument will be either an
141 integer or a string. If it is an integer, it represents the index of the
142 positional argument in *args*; if it is a string, then it represents a
143 named argument in *kwargs*.
144
145 The *args* parameter is set to the list of positional arguments to
146 :meth:`vformat`, and the *kwargs* parameter is set to the dictionary of
147 keyword arguments.
148
149 For compound field names, these functions are only called for the first
150 component of the field name; Subsequent components are handled through
151 normal attribute and indexing operations.
152
153 So for example, the field expression '0.name' would cause
154 :meth:`get_value` to be called with a *key* argument of 0. The ``name``
155 attribute will be looked up after :meth:`get_value` returns by calling the
156 built-in :func:`getattr` function.
157
158 If the index or keyword refers to an item that does not exist, then an
159 :exc:`IndexError` or :exc:`KeyError` should be raised.
160
161 .. method:: check_unused_args(used_args, args, kwargs)
162
163 Implement checking for unused arguments if desired. The arguments to this
164 function is the set of all argument keys that were actually referred to in
165 the format string (integers for positional arguments, and strings for
166 named arguments), and a reference to the *args* and *kwargs* that was
167 passed to vformat. The set of unused args can be calculated from these
Georg Brandl7cb13192010-08-03 12:06:29 +0000168 parameters. :meth:`check_unused_args` is assumed to raise an exception if
Georg Brandl4b491312007-08-31 09:22:56 +0000169 the check fails.
170
171 .. method:: format_field(value, format_spec)
172
173 :meth:`format_field` simply calls the global :func:`format` built-in. The
174 method is provided so that subclasses can override it.
175
176 .. method:: convert_field(value, conversion)
Georg Brandl48310cd2009-01-03 21:18:54 +0000177
Georg Brandl4b491312007-08-31 09:22:56 +0000178 Converts the value (returned by :meth:`get_field`) given a conversion type
Ezio Melottid2191e02010-07-02 23:18:51 +0000179 (as in the tuple returned by the :meth:`parse` method). The default
R David Murraye56bf972012-08-19 17:26:34 -0400180 version understands 's' (str), 'r' (repr) and 'a' (ascii) conversion
181 types.
Georg Brandl4b491312007-08-31 09:22:56 +0000182
Georg Brandl4b491312007-08-31 09:22:56 +0000183
184.. _formatstrings:
185
186Format String Syntax
187--------------------
188
189The :meth:`str.format` method and the :class:`Formatter` class share the same
190syntax for format strings (although in the case of :class:`Formatter`,
Martin Panterbc1ee462016-02-13 00:41:37 +0000191subclasses can define their own format string syntax). The syntax is
192related to that of :ref:`formatted string literals <f-strings>`, but
193there are differences.
Georg Brandl4b491312007-08-31 09:22:56 +0000194
195Format strings contain "replacement fields" surrounded by curly braces ``{}``.
196Anything that is not contained in braces is considered literal text, which is
197copied unchanged to the output. If you need to include a brace character in the
198literal text, it can be escaped by doubling: ``{{`` and ``}}``.
199
200The grammar for a replacement field is as follows:
201
202 .. productionlist:: sf
Georg Brandl2f3ed682009-09-01 07:42:40 +0000203 replacement_field: "{" [`field_name`] ["!" `conversion`] [":" `format_spec`] "}"
Eric Smithc4cae322009-04-22 00:53:01 +0000204 field_name: arg_name ("." `attribute_name` | "[" `element_index` "]")*
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000205 arg_name: [`identifier` | `integer`]
Georg Brandl4b491312007-08-31 09:22:56 +0000206 attribute_name: `identifier`
Eric Smith2e9f2022010-02-25 14:58:13 +0000207 element_index: `integer` | `index_string`
208 index_string: <any source character except "]"> +
Benjamin Peterson065ba702008-11-09 01:43:02 +0000209 conversion: "r" | "s" | "a"
Georg Brandl4b491312007-08-31 09:22:56 +0000210 format_spec: <described in the next section>
Georg Brandl48310cd2009-01-03 21:18:54 +0000211
Georg Brandl2f3ed682009-09-01 07:42:40 +0000212In less formal terms, the replacement field can start with a *field_name* that specifies
Eric Smithc4cae322009-04-22 00:53:01 +0000213the object whose value is to be formatted and inserted
214into the output instead of the replacement field.
215The *field_name* is optionally followed by a *conversion* field, which is
Georg Brandl4b491312007-08-31 09:22:56 +0000216preceded by an exclamation point ``'!'``, and a *format_spec*, which is preceded
Eric Smithc4cae322009-04-22 00:53:01 +0000217by a colon ``':'``. These specify a non-default format for the replacement value.
Georg Brandl4b491312007-08-31 09:22:56 +0000218
Ezio Melottid2191e02010-07-02 23:18:51 +0000219See also the :ref:`formatspec` section.
220
Ezio Melottie130a522011-10-19 10:58:56 +0300221The *field_name* itself begins with an *arg_name* that is either a number or a
Eric Smithc4cae322009-04-22 00:53:01 +0000222keyword. If it's a number, it refers to a positional argument, and if it's a keyword,
223it refers to a named keyword argument. If the numerical arg_names in a format string
224are 0, 1, 2, ... in sequence, they can all be omitted (not just some)
225and the numbers 0, 1, 2, ... will be automatically inserted in that order.
Éric Araujo29cf58c2011-09-01 18:59:06 +0200226Because *arg_name* is not quote-delimited, it is not possible to specify arbitrary
227dictionary keys (e.g., the strings ``'10'`` or ``':-]'``) within a format string.
Eric Smithc4cae322009-04-22 00:53:01 +0000228The *arg_name* can be followed by any number of index or
Georg Brandl4b491312007-08-31 09:22:56 +0000229attribute expressions. An expression of the form ``'.name'`` selects the named
230attribute using :func:`getattr`, while an expression of the form ``'[index]'``
231does an index lookup using :func:`__getitem__`.
232
Ezio Melottid2191e02010-07-02 23:18:51 +0000233.. versionchanged:: 3.1
234 The positional argument specifiers can be omitted, so ``'{} {}'`` is
235 equivalent to ``'{0} {1}'``.
236
Georg Brandl4b491312007-08-31 09:22:56 +0000237Some simple format string examples::
238
Serhiy Storchakadba90392016-05-10 12:01:23 +0300239 "First, thou shalt count to {0}" # References first positional argument
240 "Bring me a {}" # Implicitly references the first positional argument
241 "From {} to {}" # Same as "From {0} to {1}"
242 "My quest is {name}" # References keyword argument 'name'
243 "Weight in tons {0.weight}" # 'weight' attribute of first positional arg
244 "Units destroyed: {players[0]}" # First element of keyword argument 'players'.
Georg Brandl48310cd2009-01-03 21:18:54 +0000245
Georg Brandl4b491312007-08-31 09:22:56 +0000246The *conversion* field causes a type coercion before formatting. Normally, the
247job of formatting a value is done by the :meth:`__format__` method of the value
248itself. However, in some cases it is desirable to force a type to be formatted
249as a string, overriding its own definition of formatting. By converting the
250value to a string before calling :meth:`__format__`, the normal formatting logic
251is bypassed.
252
Georg Brandl559e5d72008-06-11 18:37:52 +0000253Three conversion flags are currently supported: ``'!s'`` which calls :func:`str`
254on the value, ``'!r'`` which calls :func:`repr` and ``'!a'`` which calls
255:func:`ascii`.
Georg Brandl4b491312007-08-31 09:22:56 +0000256
257Some examples::
258
259 "Harold's a clever {0!s}" # Calls str() on the argument first
260 "Bring out the holy {name!r}" # Calls repr() on the argument first
Georg Brandl2f3ed682009-09-01 07:42:40 +0000261 "More {!a}" # Calls ascii() on the argument first
Georg Brandl4b491312007-08-31 09:22:56 +0000262
263The *format_spec* field contains a specification of how the value should be
264presented, including such details as field width, alignment, padding, decimal
Eric Smith0f7affe2010-02-15 11:57:31 +0000265precision and so on. Each value type can define its own "formatting
Georg Brandl4b491312007-08-31 09:22:56 +0000266mini-language" or interpretation of the *format_spec*.
267
268Most built-in types support a common formatting mini-language, which is
269described in the next section.
270
271A *format_spec* field can also include nested replacement fields within it.
Martin Panterd5db1472016-02-08 01:34:09 +0000272These nested replacement fields may contain a field name, conversion flag
273and format specification, but deeper nesting is
274not allowed. The replacement fields within the
Georg Brandl4b491312007-08-31 09:22:56 +0000275format_spec are substituted before the *format_spec* string is interpreted.
276This allows the formatting of a value to be dynamically specified.
277
Ezio Melottid2191e02010-07-02 23:18:51 +0000278See the :ref:`formatexamples` section for some examples.
Georg Brandl4b491312007-08-31 09:22:56 +0000279
Georg Brandl4b491312007-08-31 09:22:56 +0000280
281.. _formatspec:
282
283Format Specification Mini-Language
284^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
285
286"Format specifications" are used within replacement fields contained within a
287format string to define how individual values are presented (see
Martin Panterbc1ee462016-02-13 00:41:37 +0000288:ref:`formatstrings` and :ref:`f-strings`).
289They can also be passed directly to the built-in
Georg Brandl4b491312007-08-31 09:22:56 +0000290:func:`format` function. Each formattable type may define how the format
291specification is to be interpreted.
292
293Most built-in types implement the following options for format specifications,
294although some of the formatting options are only supported by the numeric types.
295
Eric Smith05c07742010-02-25 14:18:57 +0000296A general convention is that an empty format string (``""``) produces
297the same result as if you had called :func:`str` on the value. A
298non-empty format string typically modifies the result.
Georg Brandl4b491312007-08-31 09:22:56 +0000299
300The general form of a *standard format specifier* is:
301
302.. productionlist:: sf
Raymond Hettinger6db94702009-07-12 20:49:21 +0000303 format_spec: [[`fill`]`align`][`sign`][#][0][`width`][,][.`precision`][`type`]
Ezio Melottic3184422013-10-21 02:53:07 +0300304 fill: <any character>
Georg Brandl4b491312007-08-31 09:22:56 +0000305 align: "<" | ">" | "=" | "^"
306 sign: "+" | "-" | " "
307 width: `integer`
308 precision: `integer`
Eric Smith05c07742010-02-25 14:18:57 +0000309 type: "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"
Georg Brandl48310cd2009-01-03 21:18:54 +0000310
Ezio Melotti2bbdfe72013-11-17 02:47:12 +0200311If a valid *align* value is specified, it can be preceded by a *fill*
Ezio Melottic3184422013-10-21 02:53:07 +0300312character that can be any character and defaults to a space if omitted.
Martin Panterd5db1472016-02-08 01:34:09 +0000313It is not possible to use a literal curly brace ("``{``" or "``}``") as
Martin Panterbc1ee462016-02-13 00:41:37 +0000314the *fill* character in a :ref:`formatted string literal
315<f-strings>` or when using the :meth:`str.format`
Martin Panterd5db1472016-02-08 01:34:09 +0000316method. However, it is possible to insert a curly brace
317with a nested replacement field. This limitation doesn't
Ezio Melottic3184422013-10-21 02:53:07 +0300318affect the :func:`format` function.
Georg Brandl4b491312007-08-31 09:22:56 +0000319
320The meaning of the various alignment options is as follows:
321
322 +---------+----------------------------------------------------------+
323 | Option | Meaning |
324 +=========+==========================================================+
325 | ``'<'`` | Forces the field to be left-aligned within the available |
Georg Brandlca583b62011-02-07 12:13:58 +0000326 | | space (this is the default for most objects). |
Georg Brandl4b491312007-08-31 09:22:56 +0000327 +---------+----------------------------------------------------------+
328 | ``'>'`` | Forces the field to be right-aligned within the |
Georg Brandlca583b62011-02-07 12:13:58 +0000329 | | available space (this is the default for numbers). |
Georg Brandl4b491312007-08-31 09:22:56 +0000330 +---------+----------------------------------------------------------+
331 | ``'='`` | Forces the padding to be placed after the sign (if any) |
332 | | but before the digits. This is used for printing fields |
333 | | in the form '+000000120'. This alignment option is only |
Terry Jan Reedy4902c462016-03-20 21:05:57 -0400334 | | valid for numeric types. It becomes the default when '0'|
335 | | immediately precedes the field width. |
Georg Brandl4b491312007-08-31 09:22:56 +0000336 +---------+----------------------------------------------------------+
337 | ``'^'`` | Forces the field to be centered within the available |
338 | | space. |
339 +---------+----------------------------------------------------------+
340
341Note that unless a minimum field width is defined, the field width will always
342be the same size as the data to fill it, so that the alignment option has no
343meaning in this case.
344
345The *sign* option is only valid for number types, and can be one of the
346following:
347
348 +---------+----------------------------------------------------------+
349 | Option | Meaning |
350 +=========+==========================================================+
351 | ``'+'`` | indicates that a sign should be used for both |
352 | | positive as well as negative numbers. |
353 +---------+----------------------------------------------------------+
354 | ``'-'`` | indicates that a sign should be used only for negative |
355 | | numbers (this is the default behavior). |
356 +---------+----------------------------------------------------------+
357 | space | indicates that a leading space should be used on |
358 | | positive numbers, and a minus sign on negative numbers. |
359 +---------+----------------------------------------------------------+
360
Eric Smith984bb582010-11-25 16:08:06 +0000361
362The ``'#'`` option causes the "alternate form" to be used for the
363conversion. The alternate form is defined differently for different
364types. This option is only valid for integer, float, complex and
365Decimal types. For integers, when binary, octal, or hexadecimal output
366is used, this option adds the prefix respective ``'0b'``, ``'0o'``, or
367``'0x'`` to the output value. For floats, complex and Decimal the
368alternate form causes the result of the conversion to always contain a
369decimal-point character, even if no digits follow it. Normally, a
370decimal-point character appears in the result of these conversions
371only if a digit follows it. In addition, for ``'g'`` and ``'G'``
372conversions, trailing zeros are not removed from the result.
Eric Smithd68af8f2008-07-16 00:15:35 +0000373
Raymond Hettinger6db94702009-07-12 20:49:21 +0000374The ``','`` option signals the use of a comma for a thousands separator.
375For a locale aware separator, use the ``'n'`` integer presentation type
376instead.
377
Ezio Melottid2191e02010-07-02 23:18:51 +0000378.. versionchanged:: 3.1
379 Added the ``','`` option (see also :pep:`378`).
380
Georg Brandl4b491312007-08-31 09:22:56 +0000381*width* is a decimal integer defining the minimum field width. If not
382specified, then the field width will be determined by the content.
383
Terry Jan Reedy4902c462016-03-20 21:05:57 -0400384When no explicit alignment is given, preceding the *width* field by a zero
385(``'0'``) character enables
Terry Jan Reedyf6190c12012-08-17 15:40:46 -0400386sign-aware zero-padding for numeric types. This is equivalent to a *fill*
387character of ``'0'`` with an *alignment* type of ``'='``.
Georg Brandl4b491312007-08-31 09:22:56 +0000388
389The *precision* is a decimal number indicating how many digits should be
Georg Brandl3dbca812008-07-23 16:10:53 +0000390displayed after the decimal point for a floating point value formatted with
391``'f'`` and ``'F'``, or before and after the decimal point for a floating point
392value formatted with ``'g'`` or ``'G'``. For non-number types the field
393indicates the maximum field size - in other words, how many characters will be
Eric Smithe5fffc72009-05-07 19:38:09 +0000394used from the field content. The *precision* is not allowed for integer values.
Georg Brandl4b491312007-08-31 09:22:56 +0000395
396Finally, the *type* determines how the data should be presented.
397
Eric Smith05c07742010-02-25 14:18:57 +0000398The available string presentation types are:
399
400 +---------+----------------------------------------------------------+
401 | Type | Meaning |
402 +=========+==========================================================+
403 | ``'s'`` | String format. This is the default type for strings and |
404 | | may be omitted. |
405 +---------+----------------------------------------------------------+
406 | None | The same as ``'s'``. |
407 +---------+----------------------------------------------------------+
408
Georg Brandl4b491312007-08-31 09:22:56 +0000409The available integer presentation types are:
410
411 +---------+----------------------------------------------------------+
412 | Type | Meaning |
413 +=========+==========================================================+
Eric Smithd68af8f2008-07-16 00:15:35 +0000414 | ``'b'`` | Binary format. Outputs the number in base 2. |
Georg Brandl4b491312007-08-31 09:22:56 +0000415 +---------+----------------------------------------------------------+
416 | ``'c'`` | Character. Converts the integer to the corresponding |
417 | | unicode character before printing. |
418 +---------+----------------------------------------------------------+
419 | ``'d'`` | Decimal Integer. Outputs the number in base 10. |
420 +---------+----------------------------------------------------------+
421 | ``'o'`` | Octal format. Outputs the number in base 8. |
422 +---------+----------------------------------------------------------+
423 | ``'x'`` | Hex format. Outputs the number in base 16, using lower- |
424 | | case letters for the digits above 9. |
425 +---------+----------------------------------------------------------+
426 | ``'X'`` | Hex format. Outputs the number in base 16, using upper- |
427 | | case letters for the digits above 9. |
428 +---------+----------------------------------------------------------+
Eric Smith5e18a202008-05-12 10:01:24 +0000429 | ``'n'`` | Number. This is the same as ``'d'``, except that it uses |
430 | | the current locale setting to insert the appropriate |
431 | | number separator characters. |
432 +---------+----------------------------------------------------------+
Georg Brandl3dbca812008-07-23 16:10:53 +0000433 | None | The same as ``'d'``. |
Georg Brandl4b491312007-08-31 09:22:56 +0000434 +---------+----------------------------------------------------------+
Georg Brandl48310cd2009-01-03 21:18:54 +0000435
Eric Smith05c07742010-02-25 14:18:57 +0000436In addition to the above presentation types, integers can be formatted
437with the floating point presentation types listed below (except
438``'n'`` and None). When doing so, :func:`float` is used to convert the
439integer to a floating point number before formatting.
440
Georg Brandl4b491312007-08-31 09:22:56 +0000441The available presentation types for floating point and decimal values are:
Georg Brandl48310cd2009-01-03 21:18:54 +0000442
Georg Brandl4b491312007-08-31 09:22:56 +0000443 +---------+----------------------------------------------------------+
444 | Type | Meaning |
445 +=========+==========================================================+
446 | ``'e'`` | Exponent notation. Prints the number in scientific |
447 | | notation using the letter 'e' to indicate the exponent. |
Eric V. Smith45fe62d2013-04-15 09:51:54 -0400448 | | The default precision is ``6``. |
Georg Brandl4b491312007-08-31 09:22:56 +0000449 +---------+----------------------------------------------------------+
Eric Smith22b85b32008-07-17 19:18:29 +0000450 | ``'E'`` | Exponent notation. Same as ``'e'`` except it uses an |
451 | | upper case 'E' as the separator character. |
Georg Brandl4b491312007-08-31 09:22:56 +0000452 +---------+----------------------------------------------------------+
453 | ``'f'`` | Fixed point. Displays the number as a fixed-point |
Eric V. Smith45fe62d2013-04-15 09:51:54 -0400454 | | number. The default precision is ``6``. |
Georg Brandl4b491312007-08-31 09:22:56 +0000455 +---------+----------------------------------------------------------+
Eric Smith741191f2009-05-06 13:08:15 +0000456 | ``'F'`` | Fixed point. Same as ``'f'``, but converts ``nan`` to |
457 | | ``NAN`` and ``inf`` to ``INF``. |
Georg Brandl4b491312007-08-31 09:22:56 +0000458 +---------+----------------------------------------------------------+
Mark Dickinsonc70614f2009-10-08 20:05:48 +0000459 | ``'g'`` | General format. For a given precision ``p >= 1``, |
460 | | this rounds the number to ``p`` significant digits and |
461 | | then formats the result in either fixed-point format |
462 | | or in scientific notation, depending on its magnitude. |
463 | | |
464 | | The precise rules are as follows: suppose that the |
465 | | result formatted with presentation type ``'e'`` and |
466 | | precision ``p-1`` would have exponent ``exp``. Then |
467 | | if ``-4 <= exp < p``, the number is formatted |
468 | | with presentation type ``'f'`` and precision |
469 | | ``p-1-exp``. Otherwise, the number is formatted |
470 | | with presentation type ``'e'`` and precision ``p-1``. |
471 | | In both cases insignificant trailing zeros are removed |
472 | | from the significand, and the decimal point is also |
473 | | removed if there are no remaining digits following it. |
474 | | |
Benjamin Peterson73a3f2d2010-10-12 23:07:13 +0000475 | | Positive and negative infinity, positive and negative |
Mark Dickinsonc70614f2009-10-08 20:05:48 +0000476 | | zero, and nans, are formatted as ``inf``, ``-inf``, |
477 | | ``0``, ``-0`` and ``nan`` respectively, regardless of |
478 | | the precision. |
479 | | |
480 | | A precision of ``0`` is treated as equivalent to a |
Eric V. Smith45fe62d2013-04-15 09:51:54 -0400481 | | precision of ``1``. The default precision is ``6``. |
Georg Brandl4b491312007-08-31 09:22:56 +0000482 +---------+----------------------------------------------------------+
483 | ``'G'`` | General format. Same as ``'g'`` except switches to |
Mark Dickinsonc70614f2009-10-08 20:05:48 +0000484 | | ``'E'`` if the number gets too large. The |
485 | | representations of infinity and NaN are uppercased, too. |
Georg Brandl4b491312007-08-31 09:22:56 +0000486 +---------+----------------------------------------------------------+
487 | ``'n'`` | Number. This is the same as ``'g'``, except that it uses |
488 | | the current locale setting to insert the appropriate |
489 | | number separator characters. |
490 +---------+----------------------------------------------------------+
491 | ``'%'`` | Percentage. Multiplies the number by 100 and displays |
492 | | in fixed (``'f'``) format, followed by a percent sign. |
493 +---------+----------------------------------------------------------+
Terry Jan Reedyc6ad5762014-10-06 02:04:33 -0400494 | None | Similar to ``'g'``, except that fixed-point notation, |
495 | | when used, has at least one digit past the decimal point.|
496 | | The default precision is as high as needed to represent |
497 | | the particular value. The overall effect is to match the |
498 | | output of :func:`str` as altered by the other format |
499 | | modifiers. |
Georg Brandl4b491312007-08-31 09:22:56 +0000500 +---------+----------------------------------------------------------+
501
502
Ezio Melottid2191e02010-07-02 23:18:51 +0000503.. _formatexamples:
504
505Format examples
506^^^^^^^^^^^^^^^
507
Martin Panterd5db1472016-02-08 01:34:09 +0000508This section contains examples of the :meth:`str.format` syntax and
509comparison with the old ``%``-formatting.
Ezio Melottid2191e02010-07-02 23:18:51 +0000510
511In most of the cases the syntax is similar to the old ``%``-formatting, with the
512addition of the ``{}`` and with ``:`` used instead of ``%``.
513For example, ``'%03.2f'`` can be translated to ``'{:03.2f}'``.
514
515The new format syntax also supports new and different options, shown in the
516follow examples.
517
518Accessing arguments by position::
519
520 >>> '{0}, {1}, {2}'.format('a', 'b', 'c')
521 'a, b, c'
522 >>> '{}, {}, {}'.format('a', 'b', 'c') # 3.1+ only
523 'a, b, c'
524 >>> '{2}, {1}, {0}'.format('a', 'b', 'c')
525 'c, b, a'
526 >>> '{2}, {1}, {0}'.format(*'abc') # unpacking argument sequence
527 'c, b, a'
528 >>> '{0}{1}{0}'.format('abra', 'cad') # arguments' indices can be repeated
529 'abracadabra'
530
531Accessing arguments by name::
532
533 >>> 'Coordinates: {latitude}, {longitude}'.format(latitude='37.24N', longitude='-115.81W')
534 'Coordinates: 37.24N, -115.81W'
535 >>> coord = {'latitude': '37.24N', 'longitude': '-115.81W'}
536 >>> 'Coordinates: {latitude}, {longitude}'.format(**coord)
537 'Coordinates: 37.24N, -115.81W'
538
539Accessing arguments' attributes::
540
541 >>> c = 3-5j
542 >>> ('The complex number {0} is formed from the real part {0.real} '
543 ... 'and the imaginary part {0.imag}.').format(c)
544 'The complex number (3-5j) is formed from the real part 3.0 and the imaginary part -5.0.'
545 >>> class Point:
546 ... def __init__(self, x, y):
547 ... self.x, self.y = x, y
548 ... def __str__(self):
549 ... return 'Point({self.x}, {self.y})'.format(self=self)
550 ...
551 >>> str(Point(4, 2))
552 'Point(4, 2)'
553
554Accessing arguments' items::
555
556 >>> coord = (3, 5)
557 >>> 'X: {0[0]}; Y: {0[1]}'.format(coord)
558 'X: 3; Y: 5'
559
560Replacing ``%s`` and ``%r``::
561
562 >>> "repr() shows quotes: {!r}; str() doesn't: {!s}".format('test1', 'test2')
563 "repr() shows quotes: 'test1'; str() doesn't: test2"
564
565Aligning the text and specifying a width::
566
567 >>> '{:<30}'.format('left aligned')
568 'left aligned '
569 >>> '{:>30}'.format('right aligned')
570 ' right aligned'
571 >>> '{:^30}'.format('centered')
572 ' centered '
573 >>> '{:*^30}'.format('centered') # use '*' as a fill char
574 '***********centered***********'
575
576Replacing ``%+f``, ``%-f``, and ``% f`` and specifying a sign::
577
578 >>> '{:+f}; {:+f}'.format(3.14, -3.14) # show it always
579 '+3.140000; -3.140000'
580 >>> '{: f}; {: f}'.format(3.14, -3.14) # show a space for positive numbers
581 ' 3.140000; -3.140000'
582 >>> '{:-f}; {:-f}'.format(3.14, -3.14) # show only the minus -- same as '{:f}; {:f}'
583 '3.140000; -3.140000'
584
585Replacing ``%x`` and ``%o`` and converting the value to different bases::
586
587 >>> # format also supports binary numbers
588 >>> "int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}".format(42)
589 'int: 42; hex: 2a; oct: 52; bin: 101010'
590 >>> # with 0x, 0o, or 0b as prefix:
591 >>> "int: {0:d}; hex: {0:#x}; oct: {0:#o}; bin: {0:#b}".format(42)
592 'int: 42; hex: 0x2a; oct: 0o52; bin: 0b101010'
593
594Using the comma as a thousands separator::
595
596 >>> '{:,}'.format(1234567890)
597 '1,234,567,890'
598
599Expressing a percentage::
600
601 >>> points = 19
602 >>> total = 22
Sandro Tosibaf30da2011-12-24 15:53:35 +0100603 >>> 'Correct answers: {:.2%}'.format(points/total)
Ezio Melottid2191e02010-07-02 23:18:51 +0000604 'Correct answers: 86.36%'
605
606Using type-specific formatting::
607
608 >>> import datetime
609 >>> d = datetime.datetime(2010, 7, 4, 12, 15, 58)
610 >>> '{:%Y-%m-%d %H:%M:%S}'.format(d)
611 '2010-07-04 12:15:58'
612
613Nesting arguments and more complex examples::
614
615 >>> for align, text in zip('<^>', ['left', 'center', 'right']):
Georg Brandla5770aa2011-02-07 12:10:46 +0000616 ... '{0:{fill}{align}16}'.format(text, fill=align, align=align)
Ezio Melottid2191e02010-07-02 23:18:51 +0000617 ...
618 'left<<<<<<<<<<<<'
619 '^^^^^center^^^^^'
620 '>>>>>>>>>>>right'
621 >>>
622 >>> octets = [192, 168, 0, 1]
623 >>> '{:02X}{:02X}{:02X}{:02X}'.format(*octets)
624 'C0A80001'
625 >>> int(_, 16)
626 3232235521
627 >>>
628 >>> width = 5
Ezio Melotti40507922013-01-11 09:09:07 +0200629 >>> for num in range(5,12): #doctest: +NORMALIZE_WHITESPACE
Ezio Melottid2191e02010-07-02 23:18:51 +0000630 ... for base in 'dXob':
631 ... print('{0:{width}{base}}'.format(num, base=base, width=width), end=' ')
632 ... print()
633 ...
634 5 5 5 101
635 6 6 6 110
636 7 7 7 111
637 8 8 10 1000
638 9 9 11 1001
639 10 A 12 1010
640 11 B 13 1011
641
642
643
Georg Brandl4b491312007-08-31 09:22:56 +0000644.. _template-strings:
645
Georg Brandl116aa622007-08-15 14:28:22 +0000646Template strings
647----------------
648
649Templates provide simpler string substitutions as described in :pep:`292`.
650Instead of the normal ``%``\ -based substitutions, Templates support ``$``\
651-based substitutions, using the following rules:
652
653* ``$$`` is an escape; it is replaced with a single ``$``.
654
655* ``$identifier`` names a substitution placeholder matching a mapping key of
Barry Warsaw17d5f472015-06-09 14:20:31 -0400656 ``"identifier"``. By default, ``"identifier"`` is restricted to any
657 case-insensitive ASCII alphanumeric string (including underscores) that
658 starts with an underscore or ASCII letter. The first non-identifier
659 character after the ``$`` character terminates this placeholder
660 specification.
Georg Brandl116aa622007-08-15 14:28:22 +0000661
Barry Warsaw17d5f472015-06-09 14:20:31 -0400662* ``${identifier}`` is equivalent to ``$identifier``. It is required when
663 valid identifier characters follow the placeholder but are not part of the
Georg Brandl116aa622007-08-15 14:28:22 +0000664 placeholder, such as ``"${noun}ification"``.
665
666Any other appearance of ``$`` in the string will result in a :exc:`ValueError`
667being raised.
668
Georg Brandl116aa622007-08-15 14:28:22 +0000669The :mod:`string` module provides a :class:`Template` class that implements
670these rules. The methods of :class:`Template` are:
671
672
673.. class:: Template(template)
674
675 The constructor takes a single argument which is the template string.
676
677
Georg Brandl7f01a132009-09-16 15:58:14 +0000678 .. method:: substitute(mapping, **kwds)
Georg Brandl116aa622007-08-15 14:28:22 +0000679
Benjamin Petersone41251e2008-04-25 01:59:09 +0000680 Performs the template substitution, returning a new string. *mapping* is
681 any dictionary-like object with keys that match the placeholders in the
682 template. Alternatively, you can provide keyword arguments, where the
Georg Brandl7f01a132009-09-16 15:58:14 +0000683 keywords are the placeholders. When both *mapping* and *kwds* are given
684 and there are duplicates, the placeholders from *kwds* take precedence.
Georg Brandl116aa622007-08-15 14:28:22 +0000685
686
Georg Brandl7f01a132009-09-16 15:58:14 +0000687 .. method:: safe_substitute(mapping, **kwds)
Georg Brandl116aa622007-08-15 14:28:22 +0000688
Benjamin Petersone41251e2008-04-25 01:59:09 +0000689 Like :meth:`substitute`, except that if placeholders are missing from
Georg Brandl7f01a132009-09-16 15:58:14 +0000690 *mapping* and *kwds*, instead of raising a :exc:`KeyError` exception, the
Benjamin Petersone41251e2008-04-25 01:59:09 +0000691 original placeholder will appear in the resulting string intact. Also,
692 unlike with :meth:`substitute`, any other appearances of the ``$`` will
693 simply return ``$`` instead of raising :exc:`ValueError`.
Georg Brandl116aa622007-08-15 14:28:22 +0000694
Benjamin Petersone41251e2008-04-25 01:59:09 +0000695 While other exceptions may still occur, this method is called "safe"
696 because substitutions always tries to return a usable string instead of
697 raising an exception. In another sense, :meth:`safe_substitute` may be
698 anything other than safe, since it will silently ignore malformed
699 templates containing dangling delimiters, unmatched braces, or
700 placeholders that are not valid Python identifiers.
Georg Brandl116aa622007-08-15 14:28:22 +0000701
Benjamin Peterson20211002009-11-25 18:34:42 +0000702 :class:`Template` instances also provide one public data attribute:
Georg Brandl116aa622007-08-15 14:28:22 +0000703
Benjamin Peterson20211002009-11-25 18:34:42 +0000704 .. attribute:: template
Georg Brandl116aa622007-08-15 14:28:22 +0000705
Benjamin Peterson20211002009-11-25 18:34:42 +0000706 This is the object passed to the constructor's *template* argument. In
707 general, you shouldn't change it, but read-only access is not enforced.
Georg Brandl116aa622007-08-15 14:28:22 +0000708
Ezio Melottibcbc5672013-02-21 12:30:32 +0200709Here is an example of how to use a Template::
Georg Brandl116aa622007-08-15 14:28:22 +0000710
711 >>> from string import Template
712 >>> s = Template('$who likes $what')
713 >>> s.substitute(who='tim', what='kung pao')
714 'tim likes kung pao'
715 >>> d = dict(who='tim')
716 >>> Template('Give $who $100').substitute(d)
717 Traceback (most recent call last):
Ezio Melottibcbc5672013-02-21 12:30:32 +0200718 ...
Ezio Melotti40507922013-01-11 09:09:07 +0200719 ValueError: Invalid placeholder in string: line 1, col 11
Georg Brandl116aa622007-08-15 14:28:22 +0000720 >>> Template('$who likes $what').substitute(d)
721 Traceback (most recent call last):
Ezio Melottibcbc5672013-02-21 12:30:32 +0200722 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000723 KeyError: 'what'
724 >>> Template('$who likes $what').safe_substitute(d)
725 'tim likes $what'
726
727Advanced usage: you can derive subclasses of :class:`Template` to customize the
728placeholder syntax, delimiter character, or the entire regular expression used
729to parse template strings. To do this, you can override these class attributes:
730
731* *delimiter* -- This is the literal string describing a placeholder introducing
Eli Benderskyebd48052011-08-06 09:31:09 +0300732 delimiter. The default value is ``$``. Note that this should *not* be a
733 regular expression, as the implementation will call :meth:`re.escape` on this
734 string as needed.
Georg Brandl116aa622007-08-15 14:28:22 +0000735
736* *idpattern* -- This is the regular expression describing the pattern for
737 non-braced placeholders (the braces will be added automatically as
738 appropriate). The default value is the regular expression
739 ``[_a-z][_a-z0-9]*``.
740
Georg Brandl056cb932010-07-29 17:16:10 +0000741* *flags* -- The regular expression flags that will be applied when compiling
742 the regular expression used for recognizing substitutions. The default value
743 is ``re.IGNORECASE``. Note that ``re.VERBOSE`` will always be added to the
744 flags, so custom *idpattern*\ s must follow conventions for verbose regular
745 expressions.
746
747 .. versionadded:: 3.2
748
Georg Brandl116aa622007-08-15 14:28:22 +0000749Alternatively, you can provide the entire regular expression pattern by
750overriding the class attribute *pattern*. If you do this, the value must be a
751regular expression object with four named capturing groups. The capturing
752groups correspond to the rules given above, along with the invalid placeholder
753rule:
754
755* *escaped* -- This group matches the escape sequence, e.g. ``$$``, in the
756 default pattern.
757
758* *named* -- This group matches the unbraced placeholder name; it should not
759 include the delimiter in capturing group.
760
761* *braced* -- This group matches the brace enclosed placeholder name; it should
762 not include either the delimiter or braces in the capturing group.
763
764* *invalid* -- This group matches any other delimiter pattern (usually a single
765 delimiter), and it should appear last in the regular expression.
766
767
Georg Brandlabc38772009-04-12 15:51:51 +0000768Helper functions
Georg Brandl116aa622007-08-15 14:28:22 +0000769----------------
770
Georg Brandl10430ad2009-09-26 20:59:11 +0000771.. function:: capwords(s, sep=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000772
Ezio Melottia40bdda2009-09-26 12:33:22 +0000773 Split the argument into words using :meth:`str.split`, capitalize each word
774 using :meth:`str.capitalize`, and join the capitalized words using
775 :meth:`str.join`. If the optional second argument *sep* is absent
776 or ``None``, runs of whitespace characters are replaced by a single space
777 and leading and trailing whitespace are removed, otherwise *sep* is used to
778 split and join the words.
Georg Brandl116aa622007-08-15 14:28:22 +0000779