前序
There should be one – and preferably only one – obvious way to do it.
———— the Zen of Python
意译:Python提倡用一种,而且最好是只有一种方法来完成一件事
虽然 Python 有以上的提倡,但却在字符串格式化方面,没有做到这一点。
字符串格式化
敲黑板,划重点:在 Python 中有至少三种常见方式实现字符串格式化:
%-formatting 格式(Python2.6以前,推荐输出时
本文实例分析了Python字符串格式化输出方法。分享给大家供大家参考,具体如下:
我们格式化构建字符串可以有3种方法:
1 元组占位符
m = 'python'
astr = 'i love %s' % m
print astr
2 字符串的format方法
m = 'python'
astr = i love {python}.format(python=m)
print astr
3 字典格式化字符串
m = 'python'
astr = i love %(python)s %