字串格式化

2022-05-31 22:39:11 字數 3380 閱讀 6824

字串格式化

python的字串格式化有兩種方式: 百分號方式、format方式

百分號的方式相對來說比較老,而format方式則是比較先進的方式,企圖替換古老的方式,目前兩者並存。[pep-3101]

this pep proposes a new system for built-in string formatting operations, intended as a replacement for the existing '%' string formatting operator.

1、百分號方式

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

(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中百分號格式化是不存在自動將整數轉換成二進位制表示的方式

常用格式化:

tpl = "i am %s" % "alex"

tpl = "i am %s age %d" % ("alex", 18)

tpl = "i am %(name)s age %(age)d" %

tpl = "percent %.2f" % 99.97623

tpl = "i am %(pp).2f" %

tpl = "i am %.2f %%" %

2、format方式

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

fill 【可選】空白處填充的字元

align 【可選】對齊方式(需配合width使用)

<,內容左對齊

,內容右對齊(預設)

=,內容右對齊,將符號放置在填充字元的左側,且只對數字型別有效。 即使:符號+填充物+數字

^,內容居中

sign 【可選】有無符號數字

+,正號加正,負號加負;

-,正號不變,負號加負;

空格 ,正號空格,負號加負;

, 【可選】為數字新增分隔符,如: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位)

常用格式化:

tpl = "i am {}, age {}, {}".format("seven", 18, 'alex')

tpl = "i am {}, age {}, {}".format(*["seven", 18, 'alex'])

tpl = "i am , age , really ".format("seven", 18)

tpl = "i am , age , really ".format(*["seven", 18])

tpl = "i am , age , really ".format(name="seven", age=18)

tpl = "i am , age , really ".format(**)

tpl = "i am , age , really ".format([1, 2, 3], [11, 22, 33])

tpl = "i am , age , money ".format("seven", 18, 88888.1)

tpl = "i am , age ".format(*["seven", 18])

tpl = "i am , age ".format(name="seven", age=18)

tpl = "i am , age ".format(**)

tpl = "numbers: ,,,,, ".format(15, 15, 15, 15, 15, 15.87623, 2)

tpl = "numbers: ,,,,, ".format(15, 15, 15, 15, 15, 15.87623, 2)

tpl = "numbers: ,,,,, ".format(15)

tpl = "numbers: ,,,,, ".format(num=15)

更多格式化操作:

字串格式化

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注入變數的時候,這個變數就找不到會報錯。這個...