标签:
双层装饰器
字符串格式化
python字符串格式有2种方式:百分号方式、format方式;建议使用format方式
1.百分号方式
格式:%[(name)][flags][width].[precision]typecode
>>> s = "my name is %(name)s" % {"name":‘xiaoming‘} >>> print(s) my name is xiaoming
标签:
原文地址:http://www.cnblogs.com/renle177/p/5561589.html