format() in python

来源:互联网 发布:淘宝托管公司被骗18万 编辑:程序博客网 时间:2024/04/30 09:27

原po:http://www.cnblogs.com/gide/p/6955895.html


自python2.6开始,新增了一种格式化字符串的函数str.format(),此函数可以快速处理各种字符串。
语法

它通过{}和:来代替%。

请看下面的示例,基本上总结了format函数在python的中所有用法

复制代码
 1 #通过位置 2 print '{0},{1}'.format('chuhao',20) 3  4 print '{},{}'.format('chuhao',20) 5  6 print '{1},{0},{1}'.format('chuhao',20) 7  8 #通过关键字参数 9 print '{name},{age}'.format(age=18,name='chuhao')10 11 class Person:12     def __init__(self,name,age):13         self.name = name14         self.age = age15 16     def __str__(self):17         return 'This guy is {self.name},is {self.age} old'.format(self=self)18 19 print str(Person('chuhao',18))20 21 #通过映射 list22 a_list = ['chuhao',20,'china']23 print 'my name is {0[0]},from {0[2]},age is {0[1]}'.format(a_list)24 #my name is chuhao,from china,age is 2025 26 #通过映射 dict27 b_dict = {'name':'chuhao','age':20,'province':'shanxi'}28 print 'my name is {name}, age is {age},from {province}'.format(**b_dict)29 #my name is chuhao, age is 20,from shanxi30 31 #填充与对齐32 print '{:>8}'.format('189')33 #     18934 print '{:0>8}'.format('189')35 #0000018936 print '{:a>8}'.format('189')37 #aaaaa18938 39 #精度与类型f40 #保留两位小数41 print '{:.2f}'.format(321.33345)42 #321.3343 44 #用来做金额的千位分隔符45 print '{:,}'.format(1234567890)46 #1,234,567,89047 48 #其他类型 主要就是进制了,b、d、o、x分别是二进制、十进制、八进制、十六进制。49 50 print '{:b}'.format(18) #二进制 1001051 print '{:d}'.format(18) #十进制 1852 print '{:o}'.format(18) #八进制 2253 print '{:x}'.format(18) #十六进制12
复制代码