str.format()解析
Python2.6 开始,新增了一种格式化字符串的函数 str.format(),它增强了字符串格式化的功能。基本语法是通过 {} 和 : 来代替以前的 % 。
format 函数可以接受不限个参数,位置可以不按顺序。
>>> '{0} {1} {a}'.format('hello', 'world', a='!')
'hello world !'
.format格式内容如包含位置及关键字参数,位置参数优先于关键字参数,不然将会提示“位置参数后于关键字参数错误”,如下提示:
>>> '{a} {1} {0}'.format(a='!', 'hello', 'world')
SyntaxError: positional argument follows keyword argument
页:
[1]