ValueError: Single ‘}’ encountered in format string

使用python字符串的format方法时,大括号是特殊转义字符,如果需要原始的大括号,用{{代替{, 用}}代替}

'hello {{worlds in braces!}}, {name}'.format(name='zhangsan')

http://www.waitingfy.com/archives/5162

5162

Leave a Reply

Name and Email Address are required fields.
Your email will not be published or shared with third parties.