标签: python
我不确定这个问题有多重要。
我第一次看到str %运算符出现在人们的问题中,因为我不知道它并始终使用str.format(),这是在中引入的Python 2.6 。
str %
str.format()
即
'My age is {0}'.format(age)
VS
'My age is %d' % age
谢谢!