《python基礎教程》裡有一段字串格式化示例:
#coding=utf-8
# 使用指定的寬度列印格式化後的**列表
width = input('
please enter with: ')
price_width = 10item_width = width -price_width
header_format = '
%-*s%*s
'format = '
%-*s%*.2f
'print'=
' *width
print header_format % (item_width, '
item
', price_width, '
price')
print'-
'*width
print format % (item_width, '
', price_width, 0.4)
print format % (item_width, '
pears
', price_width, 0.5)
print format % (item_width, '
cantaloupes
', price_width, 1.92)
print format % (item_width, '
dried apricots (16 oz.)
', price_width, 8)
print format % (item_width, '
prunes (4 lbs)
', price_width, 12)
print'=
' * width
執行效果如下:
please enter with: 35***********************************item price
***********************************process finished with exit code 0
有幾點值得考慮:
1. 用*作為字元的寬度(或精度),它的值從元組中讀取;
2. header_format的格式'%-25s%10s',-代表左對齊,那麼item欄位所佔的寬度為25並且左對齊,price欄位所佔寬度為10並且右對齊;
字串格式化
sprintf snprintf snprintf std stringstream std strstream boost lexical cast boost format cstring format 1 sprintf 使用 sprintf 不安全,輕則破壞資料的準確性,重則程式崩潰。請看下...
格式化字串
通常在使用字串的時候,會對字串進行格式化,然後輸出或呼叫 一般我們使用替換標記對字串進行格式化 string str1 string.format add is 1,2,3 而且在c 中的替換標記可以以任意順序和次數出現在格式化字串中,但替換值是按順序排的,而且替換標記不能超出索引範圍 string...
字串格式化
例如 string s hello map.put target world string res format s,map 有什麼用呢?比如在some.properties中配置模板字串,但是如果用 這種方式,在配置了spring讀取properties注入變數的時候,這個變數就找不到會報錯。這個...