> 'Hello, %(name)s!' % { 'name':'Noel' }
'Hello, Noel!'

> 'Numbers: %i and %2.2f' % (42, math.pi)
'Numbers: 42 and 3.14'