首页 > 编程语言 > 详细

Python:数字的格式化输出

时间:2018-11-02 15:14:14      阅读:127      评论:0      收藏:0      [点我收藏+]

需要将数字格式化后输出,并控制数字的位数、对齐、千位分隔符和其他的细节。

1.    最简单的控制小数位数

>>> x = 1234.56789
>>> # Two decimal places of accuracy
>>> format(x, ‘0.2f‘)
‘1234.57‘

 2.    右对齐,总共10位,1位小数

>>> format(x, ‘>10.1f‘)
‘    1234.6‘

>>> format(x, ‘10.1f‘)
‘    1234.6‘

 

3.    左对齐,总共10位,1位小数

>>> format(x, ‘<10.1f‘)
‘    1234.6‘

 

4.    放中间,总共10位,1位小数

>>> format(x, ‘^10.1f‘)
‘ 1234.6 ‘

>>> format(x, ‘^10.2f‘)
‘ 1234.67  ‘

 5.    千位符号

>>> format(x, ‘,‘)
‘1,234.56789‘
>>> format(x, ‘0,.1f‘)
‘1,234.6

 6.    指数计数法

>>> format(x, ‘e‘)
‘1.234568e+03‘
>>> format(x, ‘0.2E‘)
‘1.23E+03‘

 

Python:数字的格式化输出

原文:https://www.cnblogs.com/baxianhua/p/9896239.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!