python 字符串格式化
Posted yitiaodahe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 字符串格式化相关的知识,希望对你有一定的参考价值。
1,基本用法
1,正常拼串
s1 = ‘%s aaa %s‘(‘alice‘,‘bob‘)
2.format
不带编号
s1 = ‘{} aaa {}‘
s1.format(‘hello‘,‘world‘)
带编号
s1 = ‘{1} aaaa {2} bbb {1}‘
s.format(‘hello‘,‘world‘)
hello aaaa world hello
命名
s1 = ‘{a} aaa {b} bbbb {a}‘
s.format(a=‘hello‘,b=‘world‘)
以上是关于python 字符串格式化的主要内容,如果未能解决你的问题,请参考以下文章