>>> "hello {key}".format(key="world") # 格式化
'hello world'
>>>
>>> "hello {{key}}".format(key="world") # 保留大括号 { }
'hello {key}'
>>> "hello {key}".format(key="world") # 格式化
'hello world'
>>>
>>> "hello {{key}}".format(key="world") # 保留大括号 { }
'hello {key}'