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

您必须登录才能发表评论。