python str.format 和 %占位符 区别

比如:'%s %s %s' % (1, 2.3, ['one', 'two', 'three'])

它的输出为'1 2.3 ['one', 'two', 'three']',就是按照%左边的标记输出的。


http://www.jb51.net/article/63672.htm

你可能感兴趣的:(python)