python里format什么意思
程序员文章站
2022-04-16 13:14:54
...
format是python2.6新增的一个格式化字符串的方法,相对于老版的%格式方法,它有很多优点。
1.不需要理会数据类型的问题,在%方法中%s只能替代字符串类型(推荐学习:Python视频教程)
2.单个参数可以多次输出,参数顺序可以不相同
3.填充方式十分灵活,对齐方式十分强大
4.官方推荐用的方式,%方式将会在后面的版本被淘汰
format的一个例子
print 'hello {0}'.format('world')
输出:
hello world
具体用例:
#通过位置 print '{0},{1}'.format('chuhao',20) print '{},{}'.format('chuhao',20) print '{1},{0},{1}'.format('chuhao',20) #通过关键字参数 print '{name},{age}'.format(age=18,name='chuhao') class Person: def __init__(self,name,age): self.name = name self.age = age def __str__(self): return 'This guy is {self.name},is {self.age} old'.format(self=self) print str(Person('chuhao',18)) #通过映射 list a_list = ['chuhao',20,'china'] print 'my name is {0[0]},from {0[2]},age is {0[1]}'.format(a_list) #my name is chuhao,from china,age is 20 #通过映射 dict b_dict = {'name':'chuhao','age':20,'province':'shanxi'} print 'my name is {name}, age is {age},from {province}'.format(**b_dict) #my name is chuhao, age is 20,from shanxi #填充与对齐 print '{:>8}'.format('189') # 189 print '{:0>8}'.format('189') #00000189 print '{:a>8}'.format('189') #aaaaa189 #精度与类型f #保留两位小数 print '{:.2f}'.format(321.33345) #321.33 #用来做金额的千位分隔符 print '{:,}'.format(1234567890) #1,234,567,890 #其他类型 主要就是进制了,b、d、o、x分别是二进制、十进制、八进制、十六进制。 print '{:b}'.format(18) #二进制 10010 print '{:d}'.format(18) #十进制 18 print '{:o}'.format(18) #八进制 22 print '{:x}'.format(18) #十六进制12
更多Python相关技术文章,请访问Python教程栏目进行学习!
以上就是python里format什么意思的详细内容,更多请关注其它相关文章!
上一篇: python三角形判定怎么做
下一篇: python中time模块需要安装么
推荐阅读
-
在python里面,为什么len()就是把对象写在括号里,而lower()就是把对象写在前面,而不是括号里?
-
做数据分析里有哪些Python能做,而MATLAB不能做的?
-
python函数里调用外部变量
-
浅谈Python类里的__init__方法函数,Python类的构造函数
-
Python常见格式化字符串方法小结【百分号与format方法】
-
完美解决python遍历删除字典里值为空的元素报错问题
-
Python常见格式化字符串方法小结【百分号与format方法】
-
完美解决python遍历删除字典里值为空的元素报错问题
-
浅谈Python 字符串格式化输出(format/printf)
-
python3翻转字符串里的单词点的实现方法