标签:color for span int 字符 %s code form 年龄
# 字符串格式化 msg = "名字:%s,年龄:%s " % ("wahaha", 20) print(msg) msg = "名字:%(n1)s, 年龄:%(n2)s" % {"n1": "wahahhhh", "n2": 20} print(msg) msg = "名字:{0}, 年龄:{1}".format("wwawaha", 20) print(msg) msg = "名字:{0}, 年龄:{1}".format(*("wwawaha", 20)) print(msg) msg = "名字:{name}, 年龄:{age}".format(name="wwawaha", age=20) print(msg) msg = "名字:{name}, 年龄:{age}".format(**{"name":"wwawaha", "age":20}) print(msg)
标签:color for span int 字符 %s code form 年龄
原文地址:https://www.cnblogs.com/lutos/p/11109367.html