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

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