python 字符串格式化—format

Posted 翔云

tags:

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

Python2.6 开始,新增了一种格式化字符串的函数 str.format()。使用起来简单方便,不会遇到使用%时候格式的选择问题。

按照参数默认顺序

>>> "yesday is {}, today is {}".format("saturday", "sunday")
‘yesday is saturday, today is sunday‘
>>>

指定参数顺序

>>> "yesday is {0}, today is {1}, good day is {0}".format("saturday", "sunday")
‘yesday is saturday, today is sunday, good day is saturday‘
>>>

指定参数名称

#!/usr/bin/python

s = "I am a {name}, and study {subject}".format(name="coder", subject="ES")
print s

output:

I am a coder, and study ES

使用字典做参数

# dict
d = {"name": "coder", "subject": "VUE"}
s = "I am a {name}, and study {subject}".format(**d)
print s

output:

I am a coder, and study VUE

使用列表做参数

# list
l = ["coder", "big data"]
s = "I am a {0}, and study {1}".format(*l)
print s

output:

I am a coder, and study big data

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

python 内置函数format

Python 中格式化字符串 % 和 format 两种方法之间的区别

python输出格式化及函数format

python 字符串的格式化

Python 字符串占位符与.format格式化的用法

Python 中格式化字符串 % 和 format 两种方法之间的区别