标签:span 基础 tom 字符 python 指定 class mat style
format方法:
将字符串中的占位符替换为指定的值
test = ‘姓名:{name},年龄:{age}‘ res = test.format(name=‘Tom‘,age=‘18‘) print(res)
打印结果:姓名:Tom,年龄:18
标签:span 基础 tom 字符 python 指定 class mat style
原文地址:https://www.cnblogs.com/z-jian/p/9916376.html