首页 > 其他 > 详细

字符窜 魔法

时间:2019-12-16 16:03:33      阅读:81      评论:0      收藏:0      [点我收藏+]
 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‘)

字符窜 魔法

原文:https://www.cnblogs.com/xiaomahei/p/12049513.html

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