Python - Formatting codes & escape characters

 0    32 fiche    sir
Télécharger mP3 Imprimer jouer consultez
 
question réponse
Left aligns the result (within the available space)
commencer à apprendre
:<
Right aligns the result (within the available space)
commencer à apprendre
:>
Center aligns the result (within the available space)
commencer à apprendre
:^
Places the sign to the left most position
commencer à apprendre
:=
Use a plus sign to indicate if the result is positive or negative
commencer à apprendre
:+
Use a minus sign for negative values only
commencer à apprendre
:-
Use a space to insert an extra space before positive numbers (and a minus sign befor negative numbers)
commencer à apprendre
:
Use a comma as a thousand separator
commencer à apprendre
:,
Use a underscore as a thousand separator
commencer à apprendre
:_
Binary format
commencer à apprendre
:b
Converts the value into the corresponding unicode character
commencer à apprendre
:c
Decimal format
commencer à apprendre
:d
Scientific format, with a lower case e
commencer à apprendre
:e
Scientific format, with an upper case E
commencer à apprendre
:E
Fix point number format
commencer à apprendre
:f
Fix point number format, in uppercase format (show inf and nan as INF and NAN)
commencer à apprendre
:F
General format
commencer à apprendre
:g
General format (using a upper case E for scientific notations)
commencer à apprendre
:G
Octal format
commencer à apprendre
:o
Hex format, lower case
commencer à apprendre
:x
Hex format, upper case
commencer à apprendre
:X
Number format
commencer à apprendre
:n
Percentage format
commencer à apprendre
:%
Old formatting codes:
commencer à apprendre
%s, %d, %r, %a
%r -^ repr(); %a -^ repr() in Ascii
Alert
commencer à apprendre
\a
Backspace
commencer à apprendre
\b
Female symbol
commencer à apprendre
\f
Male symbol
commencer à apprendre
\v
Newline
commencer à apprendre
\n
Tab
commencer à apprendre
\t
Escape to hexadecimal notation
commencer à apprendre
\xnn
Octal notation
commencer à apprendre
\nnn

Vous devez vous connecter pour poster un commentaire.