格式化

  1. 使用%進行格式化操做
格式 定義 示例示例
%d 將整數按照十進制的方式進行輸出 1, 2, 3
%x或%X 將整數以16進制的方式進行輸出(區分大小寫) 1, a, e(x)或1, A, E(X)
%f 實數(浮點數) 1.0, 2.0
%s 字符串 A, abc, 字符串
 
 
 
 
 
 
 
 
 
例如:
        print('a=%d, b=%s' % (a, b))
%3d -> 右對齊寬度爲3的整數 例: __6
%-3d -> 左對齊寬度爲3的證整數 例: 6__
%03d-> 右對齊寬度爲3(僅支持右對齊),空餘使用0進行填充 例: 006
%.3f-> 保留三位小數
 
  1. 使用format方式進行格式化操做(Python2.6開始支持)
print('測試{}'.format(666)) 輸出: 測試666
print('測試{1}, 測試{0}'.format(333, 666)) 輸出: 測試666, 測試333
print(f'{a}, 測試{b}') notice:此方式從Python3.6開始支持
print('{:d}'.format(a)) 參數同使用%
print('{:,}'.format(123456)) 每間隔3位使用','進行分隔
print('{:<3}') 寬度爲3 右對齊
print('{:>3}') 寬度爲3 左對齊
print('{:^3}') 寬度爲3 居中
能夠混合使用 例如 print('測試{:>6.3f}'.format(3.1415926)) 輸出 _3.142
 
  1. print
使用print進行輸出的時候會默認使用空格做爲分隔,同時也會在行尾進行自動換行,若是有須要能夠自行指定
print('a', 'b', 'c') 輸出 a b c
print('a', 'b', 'c', sep='-', end='*') 輸出 a-b-c*
相關文章
相關標籤/搜索