标签: python
这种“旧”格式与“新”格式之间有什么区别?
新: '%s %s' % ('one', 'two')
'%s %s' % ('one', 'two')
旧: '{} {}'.format('one', 'two')
'{} {}'.format('one', 'two')
有人可以向我解释一下吗?无论是哪种格式化选项,我尝试过的每个例子都给了我相同的结果。这仅仅是出于个人喜好吗?如果是这样似乎有点浪费?
f'{one} {two}'