python字符串格式化

python字符串格式化有兩種方式:百分號方式和format方式。html

百分號方式相對來講比較老,而format方式則比較先進。python

一、百分號方式spa

%[(name)][flags][width].[precision]typecodecode

  • (name)      可選,用於選擇指定的key
  • flags          可選,可供選擇的值有:
    • +       右對齊;正數前加正好,負數前加負號;
    • -        左對齊;正數前無符號,負數前加負號;
    • 空格    右對齊;正數前加空格,負數前加負號;
    • 0        右對齊;正數前無符號,負數前加負號;用0填充空白處
  • width         可選,佔有寬度
  • .precision   可選,小數點後保留的位數
  • typecode    必選
    • s,獲取傳入對象的__str__方法的返回值,並將其格式化到指定位置
    • r,獲取傳入對象的__repr__方法的返回值,並將其格式化到指定位置
    • c,整數:將數字轉換成其unicode對應的值,10進制範圍爲 0 <= i <= 1114111(py27則只支持0-255);字符:將字符添加到指定位置
    • o,將整數轉換成 八  進製表示,並將其格式化到指定位置
    • x,將整數轉換成十六進制表示,並將其格式化到指定位置
    • d,將整數、浮點數轉換成 十 進製表示,並將其格式化到指定位置
    • e,將整數、浮點數轉換成科學計數法,並將其格式化到指定位置(小寫e)
    • E,將整數、浮點數轉換成科學計數法,並將其格式化到指定位置(大寫E)
    • f, 將整數、浮點數轉換成浮點數表示,並將其格式化到指定位置(默認保留小數點後6位)
    • F,同上
    • g,自動調整將整數、浮點數轉換成 浮點型或科學計數法表示(超過6位數用科學計數法),並將其格式化到指定位置(若是是科學計數則是e;)
    • G,自動調整將整數、浮點數轉換成 浮點型或科學計數法表示(超過6位數用科學計數法),並將其格式化到指定位置(若是是科學計數則是E;)
    • %,當字符串中存在格式化標誌時,須要用 %%表示一個百分號

注:Python中百分號格式化是不存在自動將整數轉換成二進制表示的方式orm

經常使用格式化:htm

 1 tpl = "i am %s" % "alex"
 2 
 3  
 4 
 5 tpl = "i am %s age %d" % ("alex", 18)
 6 
 7  
 8 
 9 tpl = "i am %(name)s age %(age)d" % {"name": "alex", "age": 18}
10 
11  
12 
13 tpl = "percent %.2f" % 99.97623
14 
15  
16 
17 tpl = "i am %(pp).2f" % {"pp": 123.425556, }
18 
19  
20 
21 tpl = "i am %.2f %%" % {"pp": 123.425556, }

 

二、Format方式對象

[[fill]align][sign][#][0][width][,][.precision][type]blog

  • fill           【可選】空白處填充的字符
  • align        【可選】對齊方式(需配合width使用)
    • <,內容左對齊
    • >,內容右對齊(默認)
    • =,內容右對齊,將符號放置在填充字符的左側,且只對數字類型有效。 即便:符號+填充物+數字
    • ^,內容居中
  • sign         【可選】有無符號數字
    • +,正號加正,負號加負;
    •  -,正號不變,負號加負;
    • 空格 ,正號空格,負號加負;
  • #            【可選】對於二進制、八進制、十六進制,若是加上#,會顯示 0b/0o/0x,不然不顯示
  • ,            【可選】爲數字添加分隔符,如:1,000,000
  • width       【可選】格式化位所佔寬度
  • .precision 【可選】小數位保留精度
  • type         【可選】格式化類型
    • 傳入」 字符串類型 「的參數
      • s,格式化字符串類型數據
      • 空白,未指定類型,則默認是None,同s
    • 傳入「 整數類型 」的參數
      • b,將10進制整數自動轉換成2進製表示而後格式化
      • c,將10進制整數自動轉換爲其對應的unicode字符
      • d,十進制整數
      • o,將10進制整數自動轉換成8進製表示而後格式化;
      • x,將10進制整數自動轉換成16進製表示而後格式化(小寫x)
      • X,將10進制整數自動轉換成16進製表示而後格式化(大寫X)
    • 傳入「 浮點型或小數類型 」的參數
      • e, 轉換爲科學計數法(小寫e)表示,而後格式化;
      • E, 轉換爲科學計數法(大寫E)表示,而後格式化;
      • f , 轉換爲浮點型(默認小數點後保留6位)表示,而後格式化;
      • F, 轉換爲浮點型(默認小數點後保留6位)表示,而後格式化;
      • g, 自動在e和f中切換
      • G, 自動在E和F中切換
      • %,顯示百分比(默認顯示小數點後6位)

 經常使用格式化:ci

 1 tpl = "i am {}, age {}, {}".format("seven", 18, 'alex')
 2 
 3   
 4 
 5 tpl = "i am {}, age {}, {}".format(*["seven", 18, 'alex'])
 6 
 7   
 8 
 9 tpl = "i am {0}, age {1}, really {0}".format("seven", 18)
10 
11   
12 
13 tpl = "i am {0}, age {1}, really {0}".format(*["seven", 18])
14 
15   
16 
17 tpl = "i am {name}, age {age}, really {name}".format(name="seven", age=18)
18 
19   
20 
21 tpl = "i am {name}, age {age}, really {name}".format(**{"name": "seven", "age": 18})
22 
23   
24 
25 tpl = "i am {0[0]}, age {0[1]}, really {0[2]}".format([1, 2, 3], [11, 22, 33])
26 
27   
28 
29 tpl = "i am {:s}, age {:d}, money {:f}".format("seven", 18, 88888.1)
30 
31   
32 
33 tpl = "i am {:s}, age {:d}".format(*["seven", 18])
34 
35   
36 
37 tpl = "i am {name:s}, age {age:d}".format(name="seven", age=18)
38 
39   
40 
41 tpl = "i am {name:s}, age {age:d}".format(**{"name": "seven", "age": 18})
42 
43  
44 
45 tpl = "numbers: {:b},{:o},{:d},{:x},{:X}, {:%}".format(15, 15, 15, 15, 15, 15.87623, 2)
46 
47  
48 
49 tpl = "numbers: {:b},{:o},{:d},{:x},{:X}, {:%}".format(15, 15, 15, 15, 15, 15.87623, 2)
50 
51  
52 
53 tpl = "numbers: {0:b},{0:o},{0:d},{0:x},{0:X}, {0:%}".format(15)
54 
55  
56 
57 tpl = "numbers: {num:b},{num:o},{num:d},{num:x},{num:X}, {num:%}".format(num=15)

更多格式化操做:https://docs.python.org/3/library/string.htmlunicode

相關文章
相關標籤/搜索