码迷,mamicode.com
首页 > 编程语言 > 详细

Python标准库:内置函数format(value[, format_spec])

时间:2014-12-18 22:27:03      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:python

本函数把值valueformat_spec的格式来格式化,然而函数解释format_spec是根据value的类型来决定的,不同的类型有不同的格式化解释。当参数format_spec为空时,本函数等同于函数str(value)的方式。

其实本函数调用时,是把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       ::=  integer

precision   ::=  integer

type        ::=  "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"

fill是表示可以填写任何字符。

align是对齐方式,<是左对齐, >是右对齐,^是居中对齐。

sign是符号, +表示正号, -表示负号。

width是数字宽度,表示总共输出多少位数字。

precision是小数保留位数。

type是输出数字值是的表示方式,比如b是二进制表示;比如E是指数表示;比如X是十六进制表示。

例子:

#format()

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        

 


蔡军生  QQ:9073204 深圳

Python标准库:内置函数format(value[, format_spec])

标签:python

原文地址:http://blog.csdn.net/caimouse/article/details/42010849

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