python-format函数格式化的时候保留大括号

创建日期: 2022-04-29 17:57 | 作者: 风波 | 浏览次数: 19 | 分类: Python
>>> "hello {key}".format(key="world")   # 格式化
'hello world'
>>> 
>>> "hello {{key}}".format(key="world")  # 保留大括号 { }
'hello {key}'
19 浏览
12 爬虫
0 评论