码迷,mamicode.com
首页 > 其他好文 > 详细

format字符串格式化

时间:2019-05-14 13:04:21      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:不同   image   bsp   class   mamicode   索引   传值   form   字符串   

1.format()格式方法传值时,必须要一一对应,如果不对应则会报错

# format()格式方法传值时,必须要一一对应,如果不对应则会报错
tpl = "i am {},age {},{}".format("seven",18,alex)
print(tpl)

#可以通过索引来传值
tpl = "i am {0},age {1},{2}".format("seven",18,alex)
print(tpl)
#索引位置不同,则传过来的值不同
tpl = "i am {2},age {1},{0}".format("seven",18,alex)
print(tpl)

技术图片

2.其他传值方式

# 可通过字典的方式传值
tpl = "i am {name},age {age},really {name}".format(name =seven,age =18)
print(tpl)
tpl = "i am {name},age {age},really {name}".format(**{"name" :seven,"age" :18})
print(tpl)

#可通过列表的方式传值
tpl = "i am {0[0]},age {0[1]},really {0[2]}".format([1,2,3],[11,22,33])
print(tpl)
# 字典与类型取值联合使用
tpl = "i am {name:s},age {age:d}".format(name="seven",age =18)
print(tpl)
tpl = "i am {:s},age {:d}".format("seven",18)
print(tpl)

技术图片

 

format字符串格式化

标签:不同   image   bsp   class   mamicode   索引   传值   form   字符串   

原文地址:https://www.cnblogs.com/renzhiqiang/p/10861527.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!