Python_字段名
字段名或者是一个与某个str.format()方法对应的参数,或者是方法的某个关键字参数的名称。
>>>"{who} turned {age} this year".format(who = "She",age = 88) // 分别使用了关键字参数,who和age
'She turned 88 this year'
>>>"The {who} was {0} last week".format(12,who = "boy") //使用了一个位置参数与一个关键字参数,关键字参数总是在位置参数之后
'The boy was 12 last week'
注意:在参数列表中,关键字参数总是在位置参数之后。
也可以存取命名的属性,假定已经导入math和sys模块
>>> "math.pi == {0.pi} sys.maxunicode == {1.maxunicode}".format(math,sys)
'math.pi == 3.14159265359 sys.maxunicode == 65535'