python字符串中包含大括号时怎么使用sting的.forma

作者: 码农小杨 | 来源:发表于2017-12-01 18:23 被阅读46次

    'hello {name}.format(name='world')'的时候大括号是特殊转义字符,如果需要原始的大括号,用{{代替{, 用}}代替}, 如下:

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

    相关文章

      网友评论

        本文标题:python字符串中包含大括号时怎么使用sting的.forma

        本文链接:https://www.haomeiwen.com/subject/vfwwbxtx.html