字符串格式化

Posted fat-girl-spring

tags:

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

msg=‘i am %s my hobby is %s‘ % (‘lhf‘,‘alex‘)

print(msg)

 msg=‘i am %s my hobby is %s‘ % (‘lhf‘,1)
 msg=‘i am %s my hobby is %s‘ % (‘lhf‘,[1,2])
 print(msg)
 name=‘lhf‘
 age=19
 msg=‘i am %s my hobby is %s‘ % (name,age)
 print(msg)

打印浮点数
tpl = "percent %.2f" % 99.976234444444444444
print(tpl)

打印百分比
tpl = ‘percent %.2f %%‘ % 99.976234444444444444
print(tpl)

tpl = "i am %(name)s age %(age)d" % {"name": "alex", "age": 18}
print(tpl)

msg=‘i am %(name)+60s my hobby is alex‘ %{‘name‘:‘lhf‘}
print(msg)

msg=‘i am 33[43;1m%(name)+60s33[0m my hobby is alex‘ %{‘name‘:‘lhf‘}
print(msg)


print(‘root‘,‘x‘,‘0‘,‘0‘,sep=‘:‘)
 print(‘root‘+‘:‘+‘x‘+‘:‘+‘0‘,‘0‘)






























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

angularjs怎么将字符串格式化

PWN格式化字符串2——例子

格式化字符串是啥意思?

06-01字符串格式化.md

06-01字符串格式化.md

格式化字符串f