Python - Formatting codes & escape characters

 0    32 フィッシュ    sir
mp3をダウンロードする 印刷 遊びます 自分をチェック
 
質問 答え
Left aligns the result (within the available space)
学び始める
:<
Right aligns the result (within the available space)
学び始める
:>
Center aligns the result (within the available space)
学び始める
:^
Places the sign to the left most position
学び始める
:=
Use a plus sign to indicate if the result is positive or negative
学び始める
:+
Use a minus sign for negative values only
学び始める
:-
Use a space to insert an extra space before positive numbers (and a minus sign befor negative numbers)
学び始める
:
Use a comma as a thousand separator
学び始める
:,
Use a underscore as a thousand separator
学び始める
:_
Binary format
学び始める
:b
Converts the value into the corresponding unicode character
学び始める
:c
Decimal format
学び始める
:d
Scientific format, with a lower case e
学び始める
:e
Scientific format, with an upper case E
学び始める
:E
Fix point number format
学び始める
:f
Fix point number format, in uppercase format (show inf and nan as INF and NAN)
学び始める
:F
General format
学び始める
:g
General format (using a upper case E for scientific notations)
学び始める
:G
Octal format
学び始める
:o
Hex format, lower case
学び始める
:x
Hex format, upper case
学び始める
:X
Number format
学び始める
:n
Percentage format
学び始める
:%
Old formatting codes:
学び始める
%s, %d, %r, %a
%r -^ repr(); %a -^ repr() in Ascii
Alert
学び始める
\a
Backspace
学び始める
\b
Female symbol
学び始める
\f
Male symbol
学び始める
\v
Newline
学び始める
\n
Tab
学び始める
\t
Escape to hexadecimal notation
学び始める
\xnn
Octal notation
学び始める
\nnn

コメントを投稿するにはログインする必要があります。