List the % type specifier as included in the PEP.
This commit is contained in:
parent
f4d2fefd2c
commit
ae992c1d06
|
@ -81,8 +81,9 @@ length including the thousands separators and decimal separators.
|
||||||
No change is proposed for the locale module.
|
No change is proposed for the locale module.
|
||||||
|
|
||||||
The thousands separator is defined as shown above for types
|
The thousands separator is defined as shown above for types
|
||||||
'd', 'e', 'f', 'g', 'E', 'G'and 'F'. To allow future extensions, it is
|
'd', 'e', 'f', 'g', '%', 'E', 'G' and 'F'. To allow future
|
||||||
undefined for other types: binary, octal, hex, character, etc.
|
extensions, it is undefined for other types: binary, octal,
|
||||||
|
hex, character, etc.
|
||||||
|
|
||||||
|
|
||||||
Current Version of the Mini-Language
|
Current Version of the Mini-Language
|
||||||
|
@ -173,7 +174,7 @@ and decimal point::
|
||||||
format(1234.5, "08,.1f") --> '01,234.5'
|
format(1234.5, "08,.1f") --> '01,234.5'
|
||||||
|
|
||||||
The ',' option is defined as shown above for types 'd', 'e',
|
The ',' option is defined as shown above for types 'd', 'e',
|
||||||
'f', 'g', 'E', 'G'and 'F'. To allow future extensions, it is
|
'f', 'g', 'E', 'G', '%' and 'F'. To allow future extensions, it is
|
||||||
undefined for other types: binary, octal, hex, character,
|
undefined for other types: binary, octal, hex, character,
|
||||||
etc.
|
etc.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue