1."舊式字符串解析(%操作符)"
'Hello,%s'%name
"Hello,Bob"
'Hey%(name)s,thereisa0x%(errno)xerror!'%{
"name":name,"errno":errno}
2."新式"字符串格式化(str.format)
'Hello,{}'.format(name)
'Hello,Bob'
'Hey{name},thereisa0x{errno:x}error!'.format(name=name,errno=errno)
'HeyBob,thereisa0xbadc0ffeeerror!'
3.字符串插值/f-Strings(Python3.6+)
python3.6新出的,本人用了這個(gè)之后,果斷拋棄其他方法,真的太強(qiáng)大了!!!
name=Bob
f'Hello,{name}!'
'Hello,Bob!'
defgreet(name,question):
...returnf"Hello,{name}!How'sit{question}?"
...
greet('Bob','going')
"Hello,Bob!How'sitgoing?"
4.字符串模板法(Python標(biāo)準(zhǔn)庫)
templ_string='Hey$name,thereisa$errorerror!'
Template(templ_string).substitute(
...name=name,error=hex(errno))
'HeyBob,thereisa0xbadc0ffeeerror!'
以上內(nèi)容為大家介紹了python字符串格式化,希望對(duì)大家有所幫助,如果想要了解更多Python相關(guān)知識(shí),請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。