Ponder that you have a string which looks like the following 'This string is {{}}'
and you would like to transform it into the following 'This string is {wonderful}'
if you do 'This string is {{}}'.format('wonderful')
it won't work. What's the best way to achieve this?