标签:格式化 format pre print mat val 字符串格式化 两种 字符串
python字符串格式化有两种方式:
1、format方式
name = "我叫{name},年龄{age}"
val = name.format(name=‘yum‘,age=18)
print(val)
结果:我叫yum,年龄18
2、%格式化
name = ‘tou‘
age = 18
print(("我的名字%s,我今年%d")%(name,age))
结果:我的名字tou,我今年18
标签:格式化 format pre print mat val 字符串格式化 两种 字符串
原文地址:https://www.cnblogs.com/shengxia0911/p/11072446.html