Python字符串format函数

Posted

tags:

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

python从2.6开始支持format,一种新的更加容易读懂的字符串格式化方法。

1. 替代旧的%输出

旧的格式化输出方法:

#!/usr/bin/python
name = Tom
age = 18
print %s is %d years old % (name,age)

使用format函数格式化输出:

#!/usr/bin/python
name = Tom
age = 18
print {0} is {1} years old.format(name,age)

相比于旧的输出方式,字符串的format函数可以接受不限个参数,位置可以不按顺序,可以不用或者用多次。

2. 可以用来限制小数点位数

例如

#!/usr/bin/python
#保留小数点后3位,0.333
print {0:.3f}.format(1.0/3)

3. 填充对齐

#!/usr/bin/python
#输出‘__hello___‘,长度为10,长度不足时用‘_‘补足
#其中‘^‘表示居中对齐,‘<‘左对齐,‘>‘右对齐
print {0:_^10}.format(hello)

 



以上是关于Python字符串format函数的主要内容,如果未能解决你的问题,请参考以下文章

python输出格式化及函数format

python字符串的format函数如何使用?

Python字符串format函数

python中强大的format函数

python format字符串格式化数学意义的函数与python中的函数 day14

Python format 格式化函数