这个是字符串格式化的一个语法
Python 2.7.10 (v2.7.10:15c95b7d81dc, May 23 2015, 09:33:12)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> "{0} like {1}".format('like', 'python')
'like like python'
python2.7.9 以上 建议用foramt 这个新的语法形式来格式化字符串。