format是python2.6新增的一個格式化字串的方法,相對於老版的%格式方法,它有很多優點。
1.不需要理會資料型別的問題,在%方法中%s只能替代字串型別
2.單個引數可以多次輸出,引數順序可以不相同
3.填充方式十分靈活,對齊方式十分強大
4.官方推薦用的方式,%方式將會在後面的版本被淘汰
format的一個例子
1 |
print 'hello {0}'.format('world') |
會輸出hello world
format的格式
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 ::= <any character>
align ::= ”<” | “>” | “=” | “^”
sign ::= ”+” | “-” | ” “
width ::= integer
precision ::= integer
type ::= ”b” | “c” | “d” | “e” | “E” | “f” | “F” | “g” | “G” | “n” | “o” | “s” | “x” | “X” | “%”
應用:
一 填充
1.通過位置來填充字串
1 2 3 |
print 'hello {0} i am {1}'.format('Kevin','Tom') # hello Kevin i am Tom print 'hello {} i am {}'.format('Kevin','Tom') # hello Kevin i am Tom print 'hello {0} i am {1} . my name is {0}'.format('Kevin','Tom') # hello Kevin i am Tom . my name is Kevin |
foramt會把引數按位置順序來填充到字串中,第一個引數是0,然後1 ……
也可以不輸入數字,這樣也會按順序來填充
同一個引數可以填充多次,這個是format比%先進的地方
2.通過key來填充
1 |
print 'hello {name1} i am {name2}'.format(name1='Kevin',name2='Tom') # hello Kevin i am Tom |
3.通過下標填充
1 2 3 |
names=['Kevin','Tom'] print 'hello {names[0]} i am {names[1]}'.format(names=names) # hello Kevin i am Tom print 'hello {0[0]} i am {0[1]}'.format(names) # hello Kevin i am Tom |
4.通過字典的key
1 2 |
names={'name':'Kevin','name2':'Tom'} print 'hello {names[name]} i am {names[name2]}'.format(names=names) # hello Kevin i am Tom |
注意訪問字典的key,不用引號的
5.通過物件的屬性
1 2 3 4 5 |
class Names(): name1='Kevin' name2='Tom' print 'hello {names.name1} i am {names.name2}'.format(names=Names) # hello Kevin i am Tom |
6.使用魔法引數
1 2 3 |
args=['lu'] kwargs = {'name1': 'Kevin', 'name2': 'Tom'} print 'hello {name1} {} i am {name2}'.format(*args, **kwargs) # hello Kevin i am Tom |
二 格式轉換
b、d、o、x分別是二進位制、十進位制、八進位制、十六進位制。
數字 | 格式 | 輸出 | 描述 |
3.1415926 | {:.2f} | 3.14 | 保留小數點後兩位 |
3.1415926 | {:+.2f} | 3.14 | 帶符號保留小數點後兩位 |
-1 | {:+.2f} | -1 | 帶符號保留小數點後兩位 |
2.71828 | {:.0f} | 3 | 不帶小數 |
1000000 | {:,} | 1,000,000 | 以逗號分隔的數字格式 |
0.25 | {:.2%} | 25.00% | 百分比格式 |
1000000000 | {:.2e} | 1.00E+09 | 指數記法 |
25 | {0:b} | 11001 | 轉換成二進位制 |
25 | {0:d} | 25 | 轉換成十進位制 |
25 | {0:o} | 31 | 轉換成八進位制 |
25 | {0:x} | 19 | 轉換成十六進位制 |
三 對齊與填充
數字 | 格式 | 輸出 | 描述 |
5 | {:0>2} | 05 | 數字補零 (填充左邊, 寬度為2) |
5 | {:x<4} | 5xxx | 數字補x (填充右邊, 寬度為4) |
10 | {:x^4} | x10x | 數字補x (填充右邊, 寬度為4) |
13 | {:10} | 13 | 右對齊 (預設, 寬度為10) |
13 | {:<10} | 13 | 左對齊 (寬度為10) |
13 | {:^10} | 13 | 中間對齊 (寬度為10) |
四 其他
1.轉義{和}符號
1 |
print '{{ hello {0} }}'.format('Kevin') |
跟%中%%轉義%一樣,formate中用兩個大括號來轉義
2.format作為函式
1 2 |
f = 'hello {0} i am {1}'.format print f('Kevin','Tom') |
3.格式化datetime
1 2 |
now=datetime.now() print '{:%Y-%m-%d %X}'.format(now) |
4.{}內嵌{}
1 |
print 'hello {0:>{1}} '.format('Kevin',50) |
5.歎號的用法
!後面可以加s r a 分別對應str() repr() ascii()
作用是在填充前先用對應的函式來處理引數
1 2 |
print "{!s}".format('2') # 2 print "{!r}".format('2') # '2' |
差別就是repr帶有引號,str()是面向使用者的,目的是可讀性,repr()是面向python解析器的,返回值表示在python內部的含義
ascii()一直報錯,可能這個是3.0才有的函式
參考:https://docs.python.org/3/library/string.html#grammar-token-conversion