blob: 1da0c670a9c8f8c9d3f5ece68dc17812f3c08244 [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`,
Ezio Melottid2191e02010-07-02 23:18:51 +0000191subclasses can define their own format string syntax).
Georg Brandl4b491312007-08-31 09:22:56 +0000192
193Format strings contain "replacement fields" surrounded by curly braces ``{}``.
194Anything that is not contained in braces is considered literal text, which is
195copied unchanged to the output. If you need to include a brace character in the
196literal text, it can be escaped by doubling: ``{{`` and ``}}``.
197
198The grammar for a replacement field is as follows:
199
200 .. productionlist:: sf
Georg Brandl2f3ed682009-09-01 07:42:40 +0000201 replacement_field: "{" [`field_name`] ["!" `conversion`] [":" `format_spec`] "}"
Eric Smithc4cae322009-04-22 00:53:01 +0000202 field_name: arg_name ("." `attribute_name` | "[" `element_index` "]")*
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000203 arg_name: [`identifier` | `integer`]
Georg Brandl4b491312007-08-31 09:22:56 +0000204 attribute_name: `identifier`
Eric Smith2e9f2022010-02-25 14:58:13 +0000205 element_index: `integer` | `index_string`
206 index_string: <any source character except "]"> +
Benjamin Peterson065ba702008-11-09 01:43:02 +0000207 conversion: "r" | "s" | "a"
Georg Brandl4b491312007-08-31 09:22:56 +0000208 format_spec: <described in the next section>
Georg Brandl48310cd2009-01-03 21:18:54 +0000209
Georg Brandl2f3ed682009-09-01 07:42:40 +0000210In less formal terms, the replacement field can start with a *field_name* that specifies
Eric Smithc4cae322009-04-22 00:53:01 +0000211the object whose value is to be formatted and inserted
212into the output instead of the replacement field.
213The *field_name* is optionally followed by a *conversion* field, which is
Georg Brandl4b491312007-08-31 09:22:56 +0000214preceded by an exclamation point ``'!'``, and a *format_spec*, which is preceded
Eric Smithc4cae322009-04-22 00:53:01 +0000215by a colon ``':'``. These specify a non-default format for the replacement value.
Georg Brandl4b491312007-08-31 09:22:56 +0000216
Ezio Melottid2191e02010-07-02 23:18:51 +0000217See also the :ref:`formatspec` section.
218
Ezio Melottie130a522011-10-19 10:58:56 +0300219The *field_name* itself begins with an *arg_name* that is either a number or a
Eric Smithc4cae322009-04-22 00:53:01 +0000220keyword. If it's a number, it refers to a positional argument, and if it's a keyword,
221it refers to a named keyword argument. If the numerical arg_names in a format string
222are 0, 1, 2, ... in sequence, they can all be omitted (not just some)
223and the numbers 0, 1, 2, ... will be automatically inserted in that order.
Éric Araujo29cf58c2011-09-01 18:59:06 +0200224Because *arg_name* is not quote-delimited, it is not possible to specify arbitrary
225dictionary keys (e.g., the strings ``'10'`` or ``':-]'``) within a format string.
Eric Smithc4cae322009-04-22 00:53:01 +0000226The *arg_name* can be followed by any number of index or
Georg Brandl4b491312007-08-31 09:22:56 +0000227attribute expressions. An expression of the form ``'.name'`` selects the named
228attribute using :func:`getattr`, while an expression of the form ``'[index]'``
229does an index lookup using :func:`__getitem__`.
230
Ezio Melottid2191e02010-07-02 23:18:51 +0000231.. versionchanged:: 3.1
232 The positional argument specifiers can be omitted, so ``'{} {}'`` is
233 equivalent to ``'{0} {1}'``.
234
Georg Brandl4b491312007-08-31 09:22:56 +0000235Some simple format string examples::
236
237 "First, thou shalt count to {0}" # References first positional argument
Benjamin Peterson5879d412009-03-30 14:51:56 +0000238 "Bring me a {}" # Implicitly references the first positional argument
Georg Brandl2f3ed682009-09-01 07:42:40 +0000239 "From {} to {}" # Same as "From {0} to {1}"
Georg Brandl4b491312007-08-31 09:22:56 +0000240 "My quest is {name}" # References keyword argument 'name'
241 "Weight in tons {0.weight}" # 'weight' attribute of first positional arg
242 "Units destroyed: {players[0]}" # First element of keyword argument 'players'.
Georg Brandl48310cd2009-01-03 21:18:54 +0000243
Georg Brandl4b491312007-08-31 09:22:56 +0000244The *conversion* field causes a type coercion before formatting. Normally, the
245job of formatting a value is done by the :meth:`__format__` method of the value
246itself. However, in some cases it is desirable to force a type to be formatted
247as a string, overriding its own definition of formatting. By converting the
248value to a string before calling :meth:`__format__`, the normal formatting logic
249is bypassed.
250
Georg Brandl559e5d72008-06-11 18:37:52 +0000251Three conversion flags are currently supported: ``'!s'`` which calls :func:`str`
252on the value, ``'!r'`` which calls :func:`repr` and ``'!a'`` which calls
253:func:`ascii`.
Georg Brandl4b491312007-08-31 09:22:56 +0000254
255Some examples::
256
257 "Harold's a clever {0!s}" # Calls str() on the argument first
258 "Bring out the holy {name!r}" # Calls repr() on the argument first
Georg Brandl2f3ed682009-09-01 07:42:40 +0000259 "More {!a}" # Calls ascii() on the argument first
Georg Brandl4b491312007-08-31 09:22:56 +0000260
261The *format_spec* field contains a specification of how the value should be
262presented, including such details as field width, alignment, padding, decimal
Eric Smith0f7affe2010-02-15 11:57:31 +0000263precision and so on. Each value type can define its own "formatting
Georg Brandl4b491312007-08-31 09:22:56 +0000264mini-language" or interpretation of the *format_spec*.
265
266Most built-in types support a common formatting mini-language, which is
267described in the next section.
268
269A *format_spec* field can also include nested replacement fields within it.
Martin Panterd5db1472016-02-08 01:34:09 +0000270These nested replacement fields may contain a field name, conversion flag
271and format specification, but deeper nesting is
272not allowed. The replacement fields within the
Georg Brandl4b491312007-08-31 09:22:56 +0000273format_spec are substituted before the *format_spec* string is interpreted.
274This allows the formatting of a value to be dynamically specified.
275
Ezio Melottid2191e02010-07-02 23:18:51 +0000276See the :ref:`formatexamples` section for some examples.
Georg Brandl4b491312007-08-31 09:22:56 +0000277
Georg Brandl4b491312007-08-31 09:22:56 +0000278
279.. _formatspec:
280
281Format Specification Mini-Language
282^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
283
284"Format specifications" are used within replacement fields contained within a
285format string to define how individual values are presented (see
Ezio Melottid2191e02010-07-02 23:18:51 +0000286:ref:`formatstrings`). They can also be passed directly to the built-in
Georg Brandl4b491312007-08-31 09:22:56 +0000287:func:`format` function. Each formattable type may define how the format
288specification is to be interpreted.
289
290Most built-in types implement the following options for format specifications,
291although some of the formatting options are only supported by the numeric types.
292
Eric Smith05c07742010-02-25 14:18:57 +0000293A general convention is that an empty format string (``""``) produces
294the same result as if you had called :func:`str` on the value. A
295non-empty format string typically modifies the result.
Georg Brandl4b491312007-08-31 09:22:56 +0000296
297The general form of a *standard format specifier* is:
298
299.. productionlist:: sf
Raymond Hettinger6db94702009-07-12 20:49:21 +0000300 format_spec: [[`fill`]`align`][`sign`][#][0][`width`][,][.`precision`][`type`]
Ezio Melottic3184422013-10-21 02:53:07 +0300301 fill: <any character>
Georg Brandl4b491312007-08-31 09:22:56 +0000302 align: "<" | ">" | "=" | "^"
303 sign: "+" | "-" | " "
304 width: `integer`
305 precision: `integer`
Eric Smith05c07742010-02-25 14:18:57 +0000306 type: "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"
Georg Brandl48310cd2009-01-03 21:18:54 +0000307
Ezio Melotti2bbdfe72013-11-17 02:47:12 +0200308If a valid *align* value is specified, it can be preceded by a *fill*
Ezio Melottic3184422013-10-21 02:53:07 +0300309character that can be any character and defaults to a space if omitted.
Martin Panterd5db1472016-02-08 01:34:09 +0000310It is not possible to use a literal curly brace ("``{``" or "``}``") as
311the *fill* character when using the :meth:`str.format`
312method. However, it is possible to insert a curly brace
313with a nested replacement field. This limitation doesn't
Ezio Melottic3184422013-10-21 02:53:07 +0300314affect the :func:`format` function.
Georg Brandl4b491312007-08-31 09:22:56 +0000315
316The meaning of the various alignment options is as follows:
317
318 +---------+----------------------------------------------------------+
319 | Option | Meaning |
320 +=========+==========================================================+
321 | ``'<'`` | Forces the field to be left-aligned within the available |
Georg Brandlca583b62011-02-07 12:13:58 +0000322 | | space (this is the default for most objects). |
Georg Brandl4b491312007-08-31 09:22:56 +0000323 +---------+----------------------------------------------------------+
324 | ``'>'`` | Forces the field to be right-aligned within the |
Georg Brandlca583b62011-02-07 12:13:58 +0000325 | | available space (this is the default for numbers). |
Georg Brandl4b491312007-08-31 09:22:56 +0000326 +---------+----------------------------------------------------------+
327 | ``'='`` | Forces the padding to be placed after the sign (if any) |
328 | | but before the digits. This is used for printing fields |
329 | | in the form '+000000120'. This alignment option is only |
Terry Jan Reedy4902c462016-03-20 21:05:57 -0400330 | | valid for numeric types. It becomes the default when '0'|
331 | | immediately precedes the field width. |
Georg Brandl4b491312007-08-31 09:22:56 +0000332 +---------+----------------------------------------------------------+
333 | ``'^'`` | Forces the field to be centered within the available |
334 | | space. |
335 +---------+----------------------------------------------------------+
336
337Note that unless a minimum field width is defined, the field width will always
338be the same size as the data to fill it, so that the alignment option has no
339meaning in this case.
340
341The *sign* option is only valid for number types, and can be one of the
342following:
343
344 +---------+----------------------------------------------------------+
345 | Option | Meaning |
346 +=========+==========================================================+
347 | ``'+'`` | indicates that a sign should be used for both |
348 | | positive as well as negative numbers. |
349 +---------+----------------------------------------------------------+
350 | ``'-'`` | indicates that a sign should be used only for negative |
351 | | numbers (this is the default behavior). |
352 +---------+----------------------------------------------------------+
353 | space | indicates that a leading space should be used on |
354 | | positive numbers, and a minus sign on negative numbers. |
355 +---------+----------------------------------------------------------+
356
Eric Smith984bb582010-11-25 16:08:06 +0000357
358The ``'#'`` option causes the "alternate form" to be used for the
359conversion. The alternate form is defined differently for different
360types. This option is only valid for integer, float, complex and
361Decimal types. For integers, when binary, octal, or hexadecimal output
362is used, this option adds the prefix respective ``'0b'``, ``'0o'``, or
363``'0x'`` to the output value. For floats, complex and Decimal the
364alternate form causes the result of the conversion to always contain a
365decimal-point character, even if no digits follow it. Normally, a
366decimal-point character appears in the result of these conversions
367only if a digit follows it. In addition, for ``'g'`` and ``'G'``
368conversions, trailing zeros are not removed from the result.
Eric Smithd68af8f2008-07-16 00:15:35 +0000369
Raymond Hettinger6db94702009-07-12 20:49:21 +0000370The ``','`` option signals the use of a comma for a thousands separator.
371For a locale aware separator, use the ``'n'`` integer presentation type
372instead.
373
Ezio Melottid2191e02010-07-02 23:18:51 +0000374.. versionchanged:: 3.1
375 Added the ``','`` option (see also :pep:`378`).
376
Georg Brandl4b491312007-08-31 09:22:56 +0000377*width* is a decimal integer defining the minimum field width. If not
378specified, then the field width will be determined by the content.
379
Terry Jan Reedy4902c462016-03-20 21:05:57 -0400380When no explicit alignment is given, preceding the *width* field by a zero
381(``'0'``) character enables
Terry Jan Reedyf6190c12012-08-17 15:40:46 -0400382sign-aware zero-padding for numeric types. This is equivalent to a *fill*
383character of ``'0'`` with an *alignment* type of ``'='``.
Georg Brandl4b491312007-08-31 09:22:56 +0000384
385The *precision* is a decimal number indicating how many digits should be
Georg Brandl3dbca812008-07-23 16:10:53 +0000386displayed after the decimal point for a floating point value formatted with
387``'f'`` and ``'F'``, or before and after the decimal point for a floating point
388value formatted with ``'g'`` or ``'G'``. For non-number types the field
389indicates the maximum field size - in other words, how many characters will be
Eric Smithe5fffc72009-05-07 19:38:09 +0000390used from the field content. The *precision* is not allowed for integer values.
Georg Brandl4b491312007-08-31 09:22:56 +0000391
392Finally, the *type* determines how the data should be presented.
393
Eric Smith05c07742010-02-25 14:18:57 +0000394The available string presentation types are:
395
396 +---------+----------------------------------------------------------+
397 | Type | Meaning |
398 +=========+==========================================================+
399 | ``'s'`` | String format. This is the default type for strings and |
400 | | may be omitted. |
401 +---------+----------------------------------------------------------+
402 | None | The same as ``'s'``. |
403 +---------+----------------------------------------------------------+
404
Georg Brandl4b491312007-08-31 09:22:56 +0000405The available integer presentation types are:
406
407 +---------+----------------------------------------------------------+
408 | Type | Meaning |
409 +=========+==========================================================+
Eric Smithd68af8f2008-07-16 00:15:35 +0000410 | ``'b'`` | Binary format. Outputs the number in base 2. |
Georg Brandl4b491312007-08-31 09:22:56 +0000411 +---------+----------------------------------------------------------+
412 | ``'c'`` | Character. Converts the integer to the corresponding |
413 | | unicode character before printing. |
414 +---------+----------------------------------------------------------+
415 | ``'d'`` | Decimal Integer. Outputs the number in base 10. |
416 +---------+----------------------------------------------------------+
417 | ``'o'`` | Octal format. Outputs the number in base 8. |
418 +---------+----------------------------------------------------------+
419 | ``'x'`` | Hex format. Outputs the number in base 16, using lower- |
420 | | case letters for the digits above 9. |
421 +---------+----------------------------------------------------------+
422 | ``'X'`` | Hex format. Outputs the number in base 16, using upper- |
423 | | case letters for the digits above 9. |
424 +---------+----------------------------------------------------------+
Eric Smith5e18a202008-05-12 10:01:24 +0000425 | ``'n'`` | Number. This is the same as ``'d'``, except that it uses |
426 | | the current locale setting to insert the appropriate |
427 | | number separator characters. |
428 +---------+----------------------------------------------------------+
Georg Brandl3dbca812008-07-23 16:10:53 +0000429 | None | The same as ``'d'``. |
Georg Brandl4b491312007-08-31 09:22:56 +0000430 +---------+----------------------------------------------------------+
Georg Brandl48310cd2009-01-03 21:18:54 +0000431
Eric Smith05c07742010-02-25 14:18:57 +0000432In addition to the above presentation types, integers can be formatted
433with the floating point presentation types listed below (except
434``'n'`` and None). When doing so, :func:`float` is used to convert the
435integer to a floating point number before formatting.
436
Georg Brandl4b491312007-08-31 09:22:56 +0000437The available presentation types for floating point and decimal values are:
Georg Brandl48310cd2009-01-03 21:18:54 +0000438
Georg Brandl4b491312007-08-31 09:22:56 +0000439 +---------+----------------------------------------------------------+
440 | Type | Meaning |
441 +=========+==========================================================+
442 | ``'e'`` | Exponent notation. Prints the number in scientific |
443 | | notation using the letter 'e' to indicate the exponent. |
Eric V. Smith45fe62d2013-04-15 09:51:54 -0400444 | | The default precision is ``6``. |
Georg Brandl4b491312007-08-31 09:22:56 +0000445 +---------+----------------------------------------------------------+
Eric Smith22b85b32008-07-17 19:18:29 +0000446 | ``'E'`` | Exponent notation. Same as ``'e'`` except it uses an |
447 | | upper case 'E' as the separator character. |
Georg Brandl4b491312007-08-31 09:22:56 +0000448 +---------+----------------------------------------------------------+
449 | ``'f'`` | Fixed point. Displays the number as a fixed-point |
Eric V. Smith45fe62d2013-04-15 09:51:54 -0400450 | | number. The default precision is ``6``. |
Georg Brandl4b491312007-08-31 09:22:56 +0000451 +---------+----------------------------------------------------------+
Eric Smith741191f2009-05-06 13:08:15 +0000452 | ``'F'`` | Fixed point. Same as ``'f'``, but converts ``nan`` to |
453 | | ``NAN`` and ``inf`` to ``INF``. |
Georg Brandl4b491312007-08-31 09:22:56 +0000454 +---------+----------------------------------------------------------+
Mark Dickinsonc70614f2009-10-08 20:05:48 +0000455 | ``'g'`` | General format. For a given precision ``p >= 1``, |
456 | | this rounds the number to ``p`` significant digits and |
457 | | then formats the result in either fixed-point format |
458 | | or in scientific notation, depending on its magnitude. |
459 | | |
460 | | The precise rules are as follows: suppose that the |
461 | | result formatted with presentation type ``'e'`` and |
462 | | precision ``p-1`` would have exponent ``exp``. Then |
463 | | if ``-4 <= exp < p``, the number is formatted |
464 | | with presentation type ``'f'`` and precision |
465 | | ``p-1-exp``. Otherwise, the number is formatted |
466 | | with presentation type ``'e'`` and precision ``p-1``. |
467 | | In both cases insignificant trailing zeros are removed |
468 | | from the significand, and the decimal point is also |
469 | | removed if there are no remaining digits following it. |
470 | | |
Benjamin Peterson73a3f2d2010-10-12 23:07:13 +0000471 | | Positive and negative infinity, positive and negative |
Mark Dickinsonc70614f2009-10-08 20:05:48 +0000472 | | zero, and nans, are formatted as ``inf``, ``-inf``, |
473 | | ``0``, ``-0`` and ``nan`` respectively, regardless of |
474 | | the precision. |
475 | | |
476 | | A precision of ``0`` is treated as equivalent to a |
Eric V. Smith45fe62d2013-04-15 09:51:54 -0400477 | | precision of ``1``. The default precision is ``6``. |
Georg Brandl4b491312007-08-31 09:22:56 +0000478 +---------+----------------------------------------------------------+
479 | ``'G'`` | General format. Same as ``'g'`` except switches to |
Mark Dickinsonc70614f2009-10-08 20:05:48 +0000480 | | ``'E'`` if the number gets too large. The |
481 | | representations of infinity and NaN are uppercased, too. |
Georg Brandl4b491312007-08-31 09:22:56 +0000482 +---------+----------------------------------------------------------+
483 | ``'n'`` | Number. This is the same as ``'g'``, except that it uses |
484 | | the current locale setting to insert the appropriate |
485 | | number separator characters. |
486 +---------+----------------------------------------------------------+
487 | ``'%'`` | Percentage. Multiplies the number by 100 and displays |
488 | | in fixed (``'f'``) format, followed by a percent sign. |
489 +---------+----------------------------------------------------------+
Terry Jan Reedyc6ad5762014-10-06 02:04:33 -0400490 | None | Similar to ``'g'``, except that fixed-point notation, |
491 | | when used, has at least one digit past the decimal point.|
492 | | The default precision is as high as needed to represent |
493 | | the particular value. The overall effect is to match the |
494 | | output of :func:`str` as altered by the other format |
495 | | modifiers. |
Georg Brandl4b491312007-08-31 09:22:56 +0000496 +---------+----------------------------------------------------------+
497
498
Ezio Melottid2191e02010-07-02 23:18:51 +0000499.. _formatexamples:
500
501Format examples
502^^^^^^^^^^^^^^^
503
Martin Panterd5db1472016-02-08 01:34:09 +0000504This section contains examples of the :meth:`str.format` syntax and
505comparison with the old ``%``-formatting.
Ezio Melottid2191e02010-07-02 23:18:51 +0000506
507In most of the cases the syntax is similar to the old ``%``-formatting, with the
508addition of the ``{}`` and with ``:`` used instead of ``%``.
509For example, ``'%03.2f'`` can be translated to ``'{:03.2f}'``.
510
511The new format syntax also supports new and different options, shown in the
512follow examples.
513
514Accessing arguments by position::
515
516 >>> '{0}, {1}, {2}'.format('a', 'b', 'c')
517 'a, b, c'
518 >>> '{}, {}, {}'.format('a', 'b', 'c') # 3.1+ only
519 'a, b, c'
520 >>> '{2}, {1}, {0}'.format('a', 'b', 'c')
521 'c, b, a'
522 >>> '{2}, {1}, {0}'.format(*'abc') # unpacking argument sequence
523 'c, b, a'
524 >>> '{0}{1}{0}'.format('abra', 'cad') # arguments' indices can be repeated
525 'abracadabra'
526
527Accessing arguments by name::
528
529 >>> 'Coordinates: {latitude}, {longitude}'.format(latitude='37.24N', longitude='-115.81W')
530 'Coordinates: 37.24N, -115.81W'
531 >>> coord = {'latitude': '37.24N', 'longitude': '-115.81W'}
532 >>> 'Coordinates: {latitude}, {longitude}'.format(**coord)
533 'Coordinates: 37.24N, -115.81W'
534
535Accessing arguments' attributes::
536
537 >>> c = 3-5j
538 >>> ('The complex number {0} is formed from the real part {0.real} '
539 ... 'and the imaginary part {0.imag}.').format(c)
540 'The complex number (3-5j) is formed from the real part 3.0 and the imaginary part -5.0.'
541 >>> class Point:
542 ... def __init__(self, x, y):
543 ... self.x, self.y = x, y
544 ... def __str__(self):
545 ... return 'Point({self.x}, {self.y})'.format(self=self)
546 ...
547 >>> str(Point(4, 2))
548 'Point(4, 2)'
549
550Accessing arguments' items::
551
552 >>> coord = (3, 5)
553 >>> 'X: {0[0]}; Y: {0[1]}'.format(coord)
554 'X: 3; Y: 5'
555
556Replacing ``%s`` and ``%r``::
557
558 >>> "repr() shows quotes: {!r}; str() doesn't: {!s}".format('test1', 'test2')
559 "repr() shows quotes: 'test1'; str() doesn't: test2"
560
561Aligning the text and specifying a width::
562
563 >>> '{:<30}'.format('left aligned')
564 'left aligned '
565 >>> '{:>30}'.format('right aligned')
566 ' right aligned'
567 >>> '{:^30}'.format('centered')
568 ' centered '
569 >>> '{:*^30}'.format('centered') # use '*' as a fill char
570 '***********centered***********'
571
572Replacing ``%+f``, ``%-f``, and ``% f`` and specifying a sign::
573
574 >>> '{:+f}; {:+f}'.format(3.14, -3.14) # show it always
575 '+3.140000; -3.140000'
576 >>> '{: f}; {: f}'.format(3.14, -3.14) # show a space for positive numbers
577 ' 3.140000; -3.140000'
578 >>> '{:-f}; {:-f}'.format(3.14, -3.14) # show only the minus -- same as '{:f}; {:f}'
579 '3.140000; -3.140000'
580
581Replacing ``%x`` and ``%o`` and converting the value to different bases::
582
583 >>> # format also supports binary numbers
584 >>> "int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}".format(42)
585 'int: 42; hex: 2a; oct: 52; bin: 101010'
586 >>> # with 0x, 0o, or 0b as prefix:
587 >>> "int: {0:d}; hex: {0:#x}; oct: {0:#o}; bin: {0:#b}".format(42)
588 'int: 42; hex: 0x2a; oct: 0o52; bin: 0b101010'
589
590Using the comma as a thousands separator::
591
592 >>> '{:,}'.format(1234567890)
593 '1,234,567,890'
594
595Expressing a percentage::
596
597 >>> points = 19
598 >>> total = 22
Sandro Tosibaf30da2011-12-24 15:53:35 +0100599 >>> 'Correct answers: {:.2%}'.format(points/total)
Ezio Melottid2191e02010-07-02 23:18:51 +0000600 'Correct answers: 86.36%'
601
602Using type-specific formatting::
603
604 >>> import datetime
605 >>> d = datetime.datetime(2010, 7, 4, 12, 15, 58)
606 >>> '{:%Y-%m-%d %H:%M:%S}'.format(d)
607 '2010-07-04 12:15:58'
608
609Nesting arguments and more complex examples::
610
611 >>> for align, text in zip('<^>', ['left', 'center', 'right']):
Georg Brandla5770aa2011-02-07 12:10:46 +0000612 ... '{0:{fill}{align}16}'.format(text, fill=align, align=align)
Ezio Melottid2191e02010-07-02 23:18:51 +0000613 ...
614 'left<<<<<<<<<<<<'
615 '^^^^^center^^^^^'
616 '>>>>>>>>>>>right'
617 >>>
618 >>> octets = [192, 168, 0, 1]
619 >>> '{:02X}{:02X}{:02X}{:02X}'.format(*octets)
620 'C0A80001'
621 >>> int(_, 16)
622 3232235521
623 >>>
624 >>> width = 5
Ezio Melotti40507922013-01-11 09:09:07 +0200625 >>> for num in range(5,12): #doctest: +NORMALIZE_WHITESPACE
Ezio Melottid2191e02010-07-02 23:18:51 +0000626 ... for base in 'dXob':
627 ... print('{0:{width}{base}}'.format(num, base=base, width=width), end=' ')
628 ... print()
629 ...
630 5 5 5 101
631 6 6 6 110
632 7 7 7 111
633 8 8 10 1000
634 9 9 11 1001
635 10 A 12 1010
636 11 B 13 1011
637
638
639
Georg Brandl4b491312007-08-31 09:22:56 +0000640.. _template-strings:
641
Georg Brandl116aa622007-08-15 14:28:22 +0000642Template strings
643----------------
644
645Templates provide simpler string substitutions as described in :pep:`292`.
646Instead of the normal ``%``\ -based substitutions, Templates support ``$``\
647-based substitutions, using the following rules:
648
649* ``$$`` is an escape; it is replaced with a single ``$``.
650
651* ``$identifier`` names a substitution placeholder matching a mapping key of
Barry Warsaw17d5f472015-06-09 14:20:31 -0400652 ``"identifier"``. By default, ``"identifier"`` is restricted to any
653 case-insensitive ASCII alphanumeric string (including underscores) that
654 starts with an underscore or ASCII letter. The first non-identifier
655 character after the ``$`` character terminates this placeholder
656 specification.
Georg Brandl116aa622007-08-15 14:28:22 +0000657
Barry Warsaw17d5f472015-06-09 14:20:31 -0400658* ``${identifier}`` is equivalent to ``$identifier``. It is required when
659 valid identifier characters follow the placeholder but are not part of the
Georg Brandl116aa622007-08-15 14:28:22 +0000660 placeholder, such as ``"${noun}ification"``.
661
662Any other appearance of ``$`` in the string will result in a :exc:`ValueError`
663being raised.
664
Georg Brandl116aa622007-08-15 14:28:22 +0000665The :mod:`string` module provides a :class:`Template` class that implements
666these rules. The methods of :class:`Template` are:
667
668
669.. class:: Template(template)
670
671 The constructor takes a single argument which is the template string.
672
673
Georg Brandl7f01a132009-09-16 15:58:14 +0000674 .. method:: substitute(mapping, **kwds)
Georg Brandl116aa622007-08-15 14:28:22 +0000675
Benjamin Petersone41251e2008-04-25 01:59:09 +0000676 Performs the template substitution, returning a new string. *mapping* is
677 any dictionary-like object with keys that match the placeholders in the
678 template. Alternatively, you can provide keyword arguments, where the
Georg Brandl7f01a132009-09-16 15:58:14 +0000679 keywords are the placeholders. When both *mapping* and *kwds* are given
680 and there are duplicates, the placeholders from *kwds* take precedence.
Georg Brandl116aa622007-08-15 14:28:22 +0000681
682
Georg Brandl7f01a132009-09-16 15:58:14 +0000683 .. method:: safe_substitute(mapping, **kwds)
Georg Brandl116aa622007-08-15 14:28:22 +0000684
Benjamin Petersone41251e2008-04-25 01:59:09 +0000685 Like :meth:`substitute`, except that if placeholders are missing from
Georg Brandl7f01a132009-09-16 15:58:14 +0000686 *mapping* and *kwds*, instead of raising a :exc:`KeyError` exception, the
Benjamin Petersone41251e2008-04-25 01:59:09 +0000687 original placeholder will appear in the resulting string intact. Also,
688 unlike with :meth:`substitute`, any other appearances of the ``$`` will
689 simply return ``$`` instead of raising :exc:`ValueError`.
Georg Brandl116aa622007-08-15 14:28:22 +0000690
Benjamin Petersone41251e2008-04-25 01:59:09 +0000691 While other exceptions may still occur, this method is called "safe"
692 because substitutions always tries to return a usable string instead of
693 raising an exception. In another sense, :meth:`safe_substitute` may be
694 anything other than safe, since it will silently ignore malformed
695 templates containing dangling delimiters, unmatched braces, or
696 placeholders that are not valid Python identifiers.
Georg Brandl116aa622007-08-15 14:28:22 +0000697
Benjamin Peterson20211002009-11-25 18:34:42 +0000698 :class:`Template` instances also provide one public data attribute:
Georg Brandl116aa622007-08-15 14:28:22 +0000699
Benjamin Peterson20211002009-11-25 18:34:42 +0000700 .. attribute:: template
Georg Brandl116aa622007-08-15 14:28:22 +0000701
Benjamin Peterson20211002009-11-25 18:34:42 +0000702 This is the object passed to the constructor's *template* argument. In
703 general, you shouldn't change it, but read-only access is not enforced.
Georg Brandl116aa622007-08-15 14:28:22 +0000704
Ezio Melottibcbc5672013-02-21 12:30:32 +0200705Here is an example of how to use a Template::
Georg Brandl116aa622007-08-15 14:28:22 +0000706
707 >>> from string import Template
708 >>> s = Template('$who likes $what')
709 >>> s.substitute(who='tim', what='kung pao')
710 'tim likes kung pao'
711 >>> d = dict(who='tim')
712 >>> Template('Give $who $100').substitute(d)
713 Traceback (most recent call last):
Ezio Melottibcbc5672013-02-21 12:30:32 +0200714 ...
Ezio Melotti40507922013-01-11 09:09:07 +0200715 ValueError: Invalid placeholder in string: line 1, col 11
Georg Brandl116aa622007-08-15 14:28:22 +0000716 >>> Template('$who likes $what').substitute(d)
717 Traceback (most recent call last):
Ezio Melottibcbc5672013-02-21 12:30:32 +0200718 ...
Georg Brandl116aa622007-08-15 14:28:22 +0000719 KeyError: 'what'
720 >>> Template('$who likes $what').safe_substitute(d)
721 'tim likes $what'
722
723Advanced usage: you can derive subclasses of :class:`Template` to customize the
724placeholder syntax, delimiter character, or the entire regular expression used
725to parse template strings. To do this, you can override these class attributes:
726
727* *delimiter* -- This is the literal string describing a placeholder introducing
Eli Benderskyebd48052011-08-06 09:31:09 +0300728 delimiter. The default value is ``$``. Note that this should *not* be a
729 regular expression, as the implementation will call :meth:`re.escape` on this
730 string as needed.
Georg Brandl116aa622007-08-15 14:28:22 +0000731
732* *idpattern* -- This is the regular expression describing the pattern for
733 non-braced placeholders (the braces will be added automatically as
734 appropriate). The default value is the regular expression
735 ``[_a-z][_a-z0-9]*``.
736
Georg Brandl056cb932010-07-29 17:16:10 +0000737* *flags* -- The regular expression flags that will be applied when compiling
738 the regular expression used for recognizing substitutions. The default value
739 is ``re.IGNORECASE``. Note that ``re.VERBOSE`` will always be added to the
740 flags, so custom *idpattern*\ s must follow conventions for verbose regular
741 expressions.
742
743 .. versionadded:: 3.2
744
Georg Brandl116aa622007-08-15 14:28:22 +0000745Alternatively, you can provide the entire regular expression pattern by
746overriding the class attribute *pattern*. If you do this, the value must be a
747regular expression object with four named capturing groups. The capturing
748groups correspond to the rules given above, along with the invalid placeholder
749rule:
750
751* *escaped* -- This group matches the escape sequence, e.g. ``$$``, in the
752 default pattern.
753
754* *named* -- This group matches the unbraced placeholder name; it should not
755 include the delimiter in capturing group.
756
757* *braced* -- This group matches the brace enclosed placeholder name; it should
758 not include either the delimiter or braces in the capturing group.
759
760* *invalid* -- This group matches any other delimiter pattern (usually a single
761 delimiter), and it should appear last in the regular expression.
762
763
Georg Brandlabc38772009-04-12 15:51:51 +0000764Helper functions
Georg Brandl116aa622007-08-15 14:28:22 +0000765----------------
766
Georg Brandl10430ad2009-09-26 20:59:11 +0000767.. function:: capwords(s, sep=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000768
Ezio Melottia40bdda2009-09-26 12:33:22 +0000769 Split the argument into words using :meth:`str.split`, capitalize each word
770 using :meth:`str.capitalize`, and join the capitalized words using
771 :meth:`str.join`. If the optional second argument *sep* is absent
772 or ``None``, runs of whitespace characters are replaced by a single space
773 and leading and trailing whitespace are removed, otherwise *sep* is used to
774 split and join the words.
Georg Brandl116aa622007-08-15 14:28:22 +0000775