05_Python Format Operation

Posted 短毛兔

tags:

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

Python格式化输出

print(name: %s,version: %s,code: %d %(Python,3.6,3))

print(name: {name},version: {version},code: {code} %{name:Python,version:3.6 ,code:3})

 

Python字符串格式化

#{}  不能重复  有序
res = name: {},version: {},code: {}.format(Python,3.6,3)
#{0} 可以重复  有序
res1 = name: {0},version: {1},code: {1}.{0} is an easy to learn.format(Python,3.6,3)
#{name} 键值对 无序
res2 = name: {name}, version: {version}, code: {name} {code}.is an easy to learn.format(name = Python,version = 3.6,code = 3)
print(res)
print(res1)
print(res2)

 

以上是关于05_Python Format Operation的主要内容,如果未能解决你的问题,请参考以下文章

Python魔法方法:__format __(self, format_spec) 方法

Python魔法方法:__format __(self, format_spec) 方法

Python进阶-----通过类的内置方法__format__自定制格式化字符串

Python基础-字符串格式化_百分号方式_format方式

Python format 格式化函数

[python] 格式化方法 format