码迷,mamicode.com
首页 > 其他好文 > 详细

字符串格式化

时间:2018-08-07 20:31:16      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:字符   浮点数   格式化   sep   字符串格式化   print   obb   int   打印   

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 \033[43;1m%(name)+60s\033[0m my hobby is alex‘ %{‘name‘:‘lhf‘}
print(msg)


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

字符串格式化

标签:字符   浮点数   格式化   sep   字符串格式化   print   obb   int   打印   

原文地址:https://www.cnblogs.com/fat-girl-spring/p/9438717.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!