Python 從 2.6 開始新增了 .format() 的字串格式化輸出函數,本篇筆記了各種輸出的範例
基本操作
.format() 主要搭配 {} 作為替代符進行輸出,{} 的位置會被後方 format 所帶的參數所取代。預設會依照順序輸出,但也可以用數字指定位置、或者是直接給予名稱做指定
不指定位置,依序輸出
print("{} {} {}".format("A", "B", "C"))
# A B C
用數字指定位置
print("{2} {0} {1}".format("A", "B", "C"))
# C A B
用名稱指定位置
print("{a} {c} {b}".format((a="A", b="B", c="C")))
# A C B
數值格式化及對齊
格式化的方式是在後方加上":“及"格式符”,可用的格式符如下
另外可以使用 > ^ < 這三種符號以及數值來搭配佔位及對齊。注意: 數值型別預設是靠右對齊,字串型別預設是靠左對齊
’:’ 前方的數值如基本操作,代表後方參數的位置
print "|{0:8d}||{1:<8d}|".format(123, 456)
# | 123||456 |
print("|{0:+8.2f}|".format(4.32))
# | +4.32|
print("|{0:8.2>}}|".format(0.8))
# | 80.00%|
字串與數值輸出預設對齊方式的比較
print("|{0:8}|".format(123))
# | 123|
print("|{0:8}|".format("abc"))
# |abc |
時間表示
datetime 有實作 format 函數,因此也支援 format 輸出,要再加上 % 格式符,列舉如下
其中有表示 * 根據地區會有不同的輸出,詳細可參考這裡,範例如下
from datetime import datetime
import locale
time = datetime(2018, 1, 23, 14, 12, 34, 123456)
print ("{:%Y-%m-%d %H:%M:%S %A}".format(time))
# 2018-01-23 14:12:34 Tuesday
# 注意: locale 和環境相關,如果環境沒有該地區設定,會出現類似以下的錯誤
# locale.Error: unsupported locale setting
locale.setlocale(locale.LC_ALL, "zh_TW.utf8")
print ("{:%Y-%m-%d %H:%M:%S %A}".format(time))
# 2018-01-23 14:12:34 週二