rank vote view answer url
100 966 240271 10 url

如何在 .format 中使用大括号?

x = " \{ Hello \} {0} "
print x.format(42)

得到了: Key Error: Hello\\

我希望输出: {Hello} 42


你需要写两次, {{}}:

>>> x = "  {0} "
>>> print x.format(42)
' { Hello } 42 '

文档在这里 Python documentation for format string syntax"