x = " \{ Hello \} {0} " print x.format(42)
дает мне: Key Error: Hello\\
Key Error: Hello\\
Я хочу напечатать вывод: {Hello} 42
{Hello} 42
Вы можете использовать String.Template():
String.Template()
from string import Template s = Template('$txt, $num') s.substitute(txt='{Hello}', num='42 ')