python: utilisez les variables définies dans le format de chaîne telles quelles
Notez que c'était pratique.
Passez les sections locales () au format ().
ipython
name = 'Taro'
country = 'Japan'
print("I'm {name} from {country}.".format(**locals()))
stdout
I'm Taro from Japan.
référence
- http://stackoverflow.com/questions/11764900/using-locals-and-format-method-for-strings-are-there-any-caveats
- http://stackoverflow.com/questions/1550479/python-is-using-vars-locals-a-good-practice
- http://qiita.com/twitte_raru/items/17f0e589252e703b2daa