Python 百分号字符串拼接
Posted wy0925
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 百分号字符串拼接相关的知识,希望对你有一定的参考价值。
# %s可以接收一切 %d只能接收数字 msg = ‘i am %s my hobby is %s‘ %(‘lhf‘,‘alex‘) print msg msg2 = ‘i am %s my hobby is %d‘ %(‘lhf‘,1) print msg2 #打印浮点数 tpl ="percent %.2f" %99.976 #截取几位 print tpl tpl2 = "i am %(name)s age %(age)d" %{"name":"alex","age":18} print tpl2 msg3 = ‘i am %(name)-60s‘ % {"name":"wangyue"} print msg3 print (‘root‘,‘x‘,‘6‘,sep=‘:‘)
以上是关于Python 百分号字符串拼接的主要内容,如果未能解决你的问题,请参考以下文章