建議使用format()方法
字符串操做 對於 %
, 官方以及給出這種格式化操做已通過時,在 Python
的將來版本中可能會消失。 在新代碼中使用新的字符串格式。所以推薦你們使用format()
來替換 %.html
format 方法系統複雜變量替換和格式化的能力,所以接下來看看都有哪些用法。python
format()
這個方法是來自 string
模塊的Formatter
類裏面的一個方法,屬於一個內置方法。所以能夠在屬於 string 對象的範疇均可以調用這個方法。git
語法結構
這個方法太強大了,官方的用戶是。程序員
replacement_field ::= "{" [field_name] ["!" conversion] [":" format_spec] "}" field_name ::= arg_name ("." attribute_name | "[" element_index "]")* arg_name ::= [identifier | integer] attribute_name ::= identifier element_index ::= integer | index_string index_string ::= <any source character except "]"> + conversion ::= "r" | "s" | "a" format_spec ::= <described in the next section>
針對 format_spec 的用法以下數組
format_spec ::= [[fill]align][sign][#][0][width][,][.precision][type] fill ::= <a character other than '}'> align ::= "<" | ">" | "=" | "^" sign ::= "+" | "-" | " " width ::= integer precision ::= integer type ::= "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"
說明:ide
<
強制字段在可用空間內左對齊>
強制字段在可用空間內右對齊=
填充位於符號(若是有的話)以後,但位於數字以前^
強制場位於可用空間的中心
經常使用的方法有下面幾個,format()方法中<模板字符串>的槽除了包括參數序號,還能夠包括格式控制信息。此時,槽的內部樣式以下:工具
{<參數序號>: <格式控制標記>}spa
"{" [[identifier | integer]("." identifier | "[" integer | index_string "]")*]["!" "r" | "s" | "a"] [":" format_spec] "}".net
其中,<格式控制標記>用來控制參數顯示時的格式,包括:<填充><對齊><寬度>,<.精度><類型>6 個字段,這些字段都是可選的,能夠組合使用,逐一介紹以下。code
經常使用表達
- 指定位置
>>> '{0}, {1}, {2}'.format('a', 'b', 'c') 'a, b, c' >>> '{}, {}, {}'.format('a', 'b', 'c') # 3.1+ only 'a, b, c' >>> '{2}, {1}, {0}'.format('a', 'b', 'c') 'c, b, a' >>> '{2}, {1}, {0}'.format(*'abc') # unpacking argument sequence 'c, b, a' >>> '{0}{1}{0}'.format('abra', 'cad') # arguments' indices can be repeated 'abracadabra'
若是要顯示 {
}
>>> '{{}}, {}, {}'.format('b', 'c') '{}, b, c'
- 指定名稱
>>> 'Coordinates: {latitude}, {longitude}'.format(latitude='37.24N', longitude='-115.81W') 'Coordinates: 37.24N, -115.81W' >>> coord = {'latitude': '37.24N', 'longitude': '-115.81W'} >>> 'Coordinates: {latitude}, {longitude}'.format(**coord) 'Coordinates: 37.24N, -115.81W'
- 指定屬性 對於複數來講,有2個屬性。若是不知道屬性具體名字是什麼,能夠用
dir
來查看。
>>> c = 3-5j >>> dir(c) [....... 'imag', 'real'] >>> ('The complex number {0} is formed from the real part {0.real} ' ... 'and the imaginary part {0.imag}.').format(c) 'The complex number (3-5j) is formed from the real part 3.0 and the imaginary part -5.0.' >>> class Point: ... def __init__(self, x, y): ... self.x, self.y = x, y ... def __str__(self): ... return 'Point({self.x}, {self.y})'.format(self=self) ... >>> str(Point(4, 2)) 'Point(4, 2)'
- 訪問數組之類
>>> coord = (3, 5) >>> 'X: {0[0]}; Y: {0[1]}'.format(coord) 'X: 3; Y: 5'
- !s 區別 !r
>>> "repr() shows quotes: {!r}; str() doesn't: {!s}".format('test1', 'test2') "repr() shows quotes: 'test1'; str() doesn't: test2"
- 文本對齊
下面文本居中和左有對齊
>>> '{:<30}'.format('left aligned') 'left aligned ' >>> '{:>30}'.format('right aligned') ' right aligned' >>> '{:^30}'.format('centered') ' centered ' >>> '{:*^30}'.format('centered') # use '*' as a fill char '***********centered***********'
- 指定類型
b
: 輸出整數的二進制方式; c
: 輸出整數對應的 Unicode 字符; d
: 輸出整數的十進制方式; o
: 輸出整數的八進制方式; x
: 輸出整數的小寫十六進制方式; X
: 輸出整數的大寫十六進制方式;
>>> '{:+f}; {:+f}'.format(3.14, -3.14) # show it always '+3.140000; -3.140000' >>> '{: f}; {: f}'.format(3.14, -3.14) # show a space for positive numbers ' 3.140000; -3.140000' >>> '{:-f}; {:-f}'.format(3.14, -3.14) # show only the minus -- same as '{:f}; {:f}' '3.140000; -3.140000'
- 逗號做爲數千個分隔符:
>>> '{:,}'.format(1234567890) '1,234,567,890'
- 表示百分比
>>> points = 19 >>> total = 22 >>> 'Correct answers: {:.2%}.'.format(points/total) 'Correct answers: 86.36%'
- 特定格式,好比日期
>>> import datetime >>> d = datetime.datetime(2010, 7, 4, 12, 15, 58) >>> '{:%Y-%m-%d %H:%M:%S}'.format(d) '2010-07-04 12:15:58'
騷操做
能夠用來輸出一個表格,有點相似三方庫prettytable的效果
>>> width = 5 >>> for num in range(5,12): ... for base in 'dXob': # 分別爲10/16/8/2進制 ... print('{0:{width}{base}}'.format(num, base=base, width=width), end=' ') ... print() ... 5 5 5 101 6 6 6 110 7 7 7 111 8 8 10 1000 9 9 11 1001 10 A 12 1010 11 B 13 1011
高級用法 - 模板字符串
若是你是一個看Python語言工具的源碼的話,會發現這麼一個用法 - 模板字符串,好比robot
裏面__init__.py
裏面就有這麼一個用法。先看例子
from string import Template errorMessageTemplate = Template("""$reason RIDE depends on wx (wxPython). .....""") .... print(errorMessageTemplate.substitute(reason="wxPython not found."))
若是是有問題就會打印
wxPython not found. RIDE depends on wx (wxPython). .....
首先要導入模板Template
,看看裏面有哪些屬性
>>> from string import Template as t >>> dir(t) [.....'braceidpattern', 'delimiter', 'flags', 'idpattern', 'pattern', 'safe_substitute', 'substitute'] >>> s = Template('$who likes $what') >>> s.substitute(who='tim', what='kung pao') 'tim likes kung pao' >>> d = dict(who='tim') >>> Template('Give $who $100').substitute(d) Traceback (most recent call last): [...] ValueError: Invalid placeholder in string: line 1, col 10 >>> Template('$who likes $what').substitute(d) Traceback (most recent call last): [...] KeyError: 'what' >>> Template('$who likes $what').safe_substitute(d) 'tim likes $what'
相關閱讀
https://stackoverflow.com/questions/5082452/string-formatting-vs-format
https://www.python.org/dev/peps/pep-3101
https://blog.csdn.net/i_chaoren/article/details/77922939
https://docs.python.org/release/3.1.5/library/stdtypes.html#old-string-formatting-operations
https://docs.python.org/release/3.1.5/library/string.html#string-formatting
看完了是否是對 format 已經有很深的認識了吧。趕忙動起來,實踐一下。
Hi,Sup,若是以爲我寫的不錯,不妨幫個忙
一、能夠關注個人公衆號「程序員匯聚地」,天天分享互聯網前沿技術,讓你的瑣碎時間不在無聊,據說關注了的人愈來愈優秀。
二、順手點個讚唄,可讓更多的人看到這篇文章,順便激勵下我,嘻嘻。