Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
x = " \{ Hello \} {0} "
print x.format(42)

gives me : Key Error: Hello\

I want to print the output: {Hello} 42

share|improve this question
2  
Was the Python reference off-line? – S.Lott Mar 29 '11 at 1:27

4 Answers

up vote 77 down vote accepted

You need to double the {{ and }}:

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

Here's the relevant part of the Python documentation for format string syntax:

Format strings contain “replacement fields” surrounded by curly braces {}. Anything that is not contained in braces is considered literal text, which is copied unchanged to the output. If you need to include a brace character in the literal text, it can be escaped by doubling: {{ and }}.

share|improve this answer

You escape it by doubling the parentheses.

Eg:

x = "{{ Hello }} {0}"
print x.format(42)
share|improve this answer

Try this:

x = "{{ Hello }} {0}"

share|improve this answer

Try doing this:

x = " {{ Hello }} {0} "
print x.format(42)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.