format格式化
使用{}作为占位符,搭配format函数使用;不仅支持固定形式的格式化字符,还支持位置的格式化填充。而且还支持了变量方式的填充;
代码示例:
'{},{},{}'.format(1,2,3,'4','5')
f = 'hello {} ,my age is {}'.format('wangwu',18)
#print(f)
f = 'hello {1} ,my age is {0}'.format(19,'wangwu')
#print(f)
f = 'hello {name} ,my age is {age}'.format(age = 20,name='wangwu')
#print(f)