x = " \{ Hello \} {0} "
print x.format(42)
gives me : Key Error: Hello\
I want to print the output: {Hello} 42
|
|
You need to double the
Here's the relevant part of the Python documentation for format string syntax:
|
|||
|
|
|
You escape it by doubling the parentheses. Eg:
|
|||
|
|