---恢复内容开始---
%s万能的 %d只能接受数字 %f浮点型默认小数点后5位 %.2f保留小数点后2位
msg='i am %s my hobby is %s'%('lhf','alex')# 只写一个会报错 print(msg)
输出
i am lhf my hobby is alex
%s万能的
msg='i am %s my hobby is %s'%('lhf',[1,2]) print(msg)
输出
i am lhf my hobby is [1, 2]
打印浮点数
# 打印浮点数 tpl='percent %f' % 99.9744739 tp2='percent %.2f' % 99.9744739 print(tpl) print(tp2)
输出
percent 99.974474
percent 99.97
打印百分比
# 打印百分比 tp1='percent %.2f %%' % 97.1238439349 print(tp1)
输出
percent 97.12 %
另一种书写形式
tp1='i am %(name)s age %(age)d'%{'name':'alex','age':18} print(tp1)
输出
i am alex age 18
print('root','x','o','o',sep=':') print('root'+':'+'x'+':'+'o'+':''o')
输出
root:x:o:o
root:x:o:o
---恢复内容结束---