前言
前面学习过字符串的几种格式化方式:
- 占位符
以%
为占位符 - 内建函数
format
以{}
为占位符 -
String
模块的Template
以${}
为占位符 -
f-string
以{}
为占位符
格式化字符串中输出大括号
第1、3种字符串格式化方法,因不单独使用大括号做为占位符,所以可以直接输出
大括号,如下
第一种:
>>> print("hi %s {hello}" % "alex")
hi alex {hello}
>>>
第三种:
>>> from string import Template
>>> s = 'hi ${name} {hello}'
>>> t = Template(s)
>>> t.substitute(name='alex')
'hi alex {hello}'
>>>
其中第2、4两种是使用大括号做为占位符使用的,可以通过双大括号来输出{{}}
如下:
第二种:
>>> print("hi %s {hello}" % "alex")
hi alex {hello}
>>>
第四种:
>>> name = 'alex'
>>> print(f'hi {name} {{hello}}')
hi alex {hello}
>>>
>>> print(f'{{hi {name} hello}}')
{hi alex hello}
>>>
>>> print(f'{{hi {name} {{hello}}}}')
{hi alex {hello}}
>>>
网友评论