Python - Formatting codes & escape characters

 0    32 kartičky    sir
stáhnout mp3 Vytisknout hrát zkontrolovat se
 
otázka odpověď
Left aligns the result (within the available space)
začněte se učit
:<
Right aligns the result (within the available space)
začněte se učit
:>
Center aligns the result (within the available space)
začněte se učit
:^
Places the sign to the left most position
začněte se učit
:=
Use a plus sign to indicate if the result is positive or negative
začněte se učit
:+
Use a minus sign for negative values only
začněte se učit
:-
Use a space to insert an extra space before positive numbers (and a minus sign befor negative numbers)
začněte se učit
:
Use a comma as a thousand separator
začněte se učit
:,
Use a underscore as a thousand separator
začněte se učit
:_
Binary format
začněte se učit
:b
Converts the value into the corresponding unicode character
začněte se učit
:c
Decimal format
začněte se učit
:d
Scientific format, with a lower case e
začněte se učit
:e
Scientific format, with an upper case E
začněte se učit
:E
Fix point number format
začněte se učit
:f
Fix point number format, in uppercase format (show inf and nan as INF and NAN)
začněte se učit
:F
General format
začněte se učit
:g
General format (using a upper case E for scientific notations)
začněte se učit
:G
Octal format
začněte se učit
:o
Hex format, lower case
začněte se učit
:x
Hex format, upper case
začněte se učit
:X
Number format
začněte se učit
:n
Percentage format
začněte se učit
:%
Old formatting codes:
začněte se učit
%s, %d, %r, %a
%r -^ repr(); %a -^ repr() in Ascii
Alert
začněte se učit
\a
Backspace
začněte se učit
\b
Female symbol
začněte se učit
\f
Male symbol
začněte se učit
\v
Newline
začněte se učit
\n
Tab
začněte se učit
\t
Escape to hexadecimal notation
začněte se učit
\xnn
Octal notation
začněte se učit
\nnn

Chcete-li přidat komentář, musíte se přihlásit.