python 字符串格式化
1."旧式字符串解析(%操作符)"
'Hello,%s'%name
"Hello,Bob"
'Hey%(name)s,thereisa0x%(errno)xerror!'%{
"name":name,"errno":errno}
'HeyBob,thereisa0xbadc0ffeeerror!'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新出的,本人用了这个之后,果断抛弃其他方法,真的太强大了!!!
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标准库)
templ_string='Hey$name,thereisa$errorerror!'
Template(templ_string).substitute(
...name=name,error=hex(errno))
'HeyBob,thereisa0xbadc0ffeeerror!'
以上内容为大家介绍了python字符串格式化,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:开发教育。
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!