首页 > 其他 > 详细

字符串格式化

时间:2020-05-06 16:36:20      阅读:52      评论:0      收藏:0      [点我收藏+]
msg=‘i am %s my hobby is %s‘ % (‘chb‘,‘coding‘)
print(msg)
字符串%s
name = ‘chb‘
age = 19
msg = ‘i am %s my hobby is %d‘ % (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‘:’chb‘}
print(msg)右对齐

msg=‘i am \033[43;1m%(name)+60s\033[0m my hobby is alex‘ %{‘name‘:‘chb‘}
print(msg) 颜色
format形式


tpl = "i am {name}, age {age}, really {name}".format(name="seven", age=18)

tpl = "i am {name}, age {age}, really {name}".format(**{"name": "seven", "age": 18})传入一个字典

tpl = "i am {:s}, age {:d}".format(*["seven", 18])传入列表
tpl = "i am {:s}, age {:d}".format("seven", 18) #["seven", 18]

l=["seven", 18]
tpl = "i am {:s}, age {:d}".format(‘seven‘,18)
print(tpl)

tpl = "numbers: {:b},{:o},{:d},{:x},{:X}, {:%},{}".format(15, 15, 15, 15, 15, 15.87623, 2)
print(tpl)






字符串格式化

原文:https://www.cnblogs.com/chb420/p/12836678.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!