python的两种格式化方法

一种是:
"" % ()
一种是:
tpls = [
  "%(name1)s is %(name1)s and %(name2)s is %(name2)s",
  "what about %(name2)s for %(name1)s ?",
  "Now we only deal with %(name1)s",
  ]
data = {'name1' : 'parrot', 'name2': 'dead'}
for tpl in tpls:
  print tpl % data