码迷,mamicode.com
首页 > 其他好文 > 详细

七种常见的字符串格式化方法

时间:2021-01-25 10:46:13      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pre   span   class   bsp   字符串格式化   填充   宽度   for   format   

 

1、保留小数点后两位

>>> print("{:.2f}".format(3.1415))
3.14

 

2、带符号保留小数点后两位

>>> print("{:+.2f}".format(-3.1415))
-3.14

 

3、不带小数点

>>> print({:.0f}.format(2.7))
3

 

 

4、整数补零,填充左边, 宽度为3

>>> print({:0>3d}.format(4))
004

 

5、以逗号分隔的数字格式

>>> print({:,}.format(123456789))
123,456,789

 

 

6、百分比格式

>>> print({:.2%}.format(0.98))
98.00%

 

7、指数记法

>>> print({:.2e}.format(123456789))
1.23e+08

 

七种常见的字符串格式化方法

标签:pre   span   class   bsp   字符串格式化   填充   宽度   for   format   

原文地址:https://www.cnblogs.com/shiyixirui/p/14313809.html

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