python学习笔记之--字符串中输出大括号

2022-09-19  本文已影响0人  itsenlin

前言

前面学习过字符串的几种格式化方式:

格式化字符串中输出大括号

第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}}
>>>
上一篇 下一篇

猜你喜欢

热点阅读