格式化在程序开发中很常见。你一定很熟悉它。 Python 中有多种格式化方法,format 函数就是其中之一。
函数原型
format(value[, format_spec])
参数意义
value: 需要被格式化的字符串
format_spec: 格式化的格式
函数定义与用法
此函数根据 format_spec 的格式格式化 value 值。但是,该函数根据值的类型解释 format_spec。不同的类型有不同的格式解释。当参数format_spec为空时,该函数等同于函数str(value)。
format () 函数可以接受不限个参数,位置可以不按顺序。
其实调用这个函数的时候,会把format(value, format_spec)的方法转换成type(value).__format__(format_spec)的方法来调用,所以在value类型中查找方法__format__(),如果找不到此方法,将返回 TypeError 异常。
其中format_spec的编写方式如下形式:
format_spec ::= [[fill]align][sign][#][0][width][,][.precision][type]
fill ::= <any character>
align ::= "<" | ">" | "=" | "^"
sign ::= "+" | "-" | " "
width ::= integerprecision ::=
integertype ::= "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" |
"x" | "X" | "%"
fill是表示可以填写任何字符。
align是对齐方式,<是左对齐, >是右对齐,^是居中对齐。
sign是符号, +表示正号, -表示负号。w
idth是数字宽度,表示总共输出多少位数字。
precision是小数保留位数。
兼容性
Python3.x
Python2.6及以上版本
注意事项
format 是 python2.6 中一种新的格式化字符串的方法。与旧的 % 格式化方法相比,它有很多优点。
1.不用关注数据类型,%s只能替换%方法中的字符串类型
2.单个参数可以多次输出,参数顺序可以不相同
3.填充方式十分灵活,对齐方式十分强大
4.官方推荐的方法,后面的版本会淘汰%方法
代码实例
print(format(2918))
print(format(0x500, 'X'))
print(format(3.14, '0=10'))
print(format(3.14159, '05.3'))
print(format(3.14159, 'E'))
print(format('test', '<20'))
print(format('test', '>20'))
print(format('test', '^20'))
输出结果
2918
500
0000003.14
03.14
3.141590E+00
test
test
test
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中获取当前时间戳09/07
- ♥ 什么是python壳?08/23
- ♥ 如何按值的大小对 python3 字典进行排序?01/10
- ♥ python模拟click的常用操作方法有哪些?10/10
- ♥ python如何截取数组的前几位08/19
- ♥ 如何安装python 3.6版本11/22
内容反馈