python之字符串格式化(format)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之字符串格式化(format)相关的知识,希望对你有一定的参考价值。

1
2
3
4
5
>>> ‘{0:.2f}‘.format(1/3)‘0.33‘
>>> ‘{0:b}‘.format(10)    #二进制‘1010‘
>>> ‘{0:o}‘.format(10)     #八进制‘12‘
>>> ‘{0:x}‘.format(10)     #16进制‘a‘
>>> ‘{:,}‘.format(12369132698)  #千分位格式化‘12,369,132,698‘











以上是关于python之字符串格式化(format)的主要内容,如果未能解决你的问题,请参考以下文章

python学习--字符串格式化之format()方法

python-7:字符串格式化之二 format

Python之format字符串格式化

Python之字符串format格式化

Python之format()函数

Python内置函数之format()