mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Merged revisions 64984 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64984 | eric.smith | 2008-07-15 20:11:49 -0400 (Tue, 15 Jul 2008) | 1 line Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.format(). ........
This commit is contained in:
parent
f70e195927
commit
d68af8f743
4 changed files with 89 additions and 33 deletions
|
@ -294,7 +294,7 @@ result as if you had called :func:`str` on the value.
|
|||
The general form of a *standard format specifier* is:
|
||||
|
||||
.. productionlist:: sf
|
||||
format_spec: [[`fill`]`align`][`sign`][0][`width`][.`precision`][`type`]
|
||||
format_spec: [[`fill`]`align`][`sign`][#][0][`width`][.`precision`][`type`]
|
||||
fill: <a character other than '}'>
|
||||
align: "<" | ">" | "=" | "^"
|
||||
sign: "+" | "-" | " "
|
||||
|
@ -348,6 +348,10 @@ following:
|
|||
| | positive numbers, and a minus sign on negative numbers. |
|
||||
+---------+----------------------------------------------------------+
|
||||
|
||||
The ``'#'`` option is only valid for integers, and only for binary,
|
||||
octal, or decimal output. If present, it specifies that the output
|
||||
will be prefixed by ``'0b'``, ``'0o'``, or ``'0x'``, respectively.
|
||||
|
||||
*width* is a decimal integer defining the minimum field width. If not
|
||||
specified, then the field width will be determined by the content.
|
||||
|
||||
|
@ -368,7 +372,7 @@ The available integer presentation types are:
|
|||
+---------+----------------------------------------------------------+
|
||||
| Type | Meaning |
|
||||
+=========+==========================================================+
|
||||
| ``'b'`` | Binary. Outputs the number in base 2. |
|
||||
| ``'b'`` | Binary format. Outputs the number in base 2. |
|
||||
+---------+----------------------------------------------------------+
|
||||
| ``'c'`` | Character. Converts the integer to the corresponding |
|
||||
| | unicode character before printing. |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue