Message81951
All I am requesting is that
'{} {} {}'.format(3, 'pi', 3.14) work as
>>> '%s %s %s' % (3, 'pi', 3.14)
'3 pi 3.14'
>>> '{0} {1} {2}'.format(3, 'pi', 3.14)
'3 pi 3.14'
do today (3.0).
I should note that the difference between typing {}, which is easy, and
{1}, is more than just one keystroke because the latter requires
unshift-1-shift |
|
Date |
User |
Action |
Args |
2009-02-13 16:37:13 | terry.reedy | set | recipients:
+ terry.reedy, mark.dickinson, pitrou, eric.smith, LambertDW, ezio.melotti |
2009-02-13 16:37:12 | terry.reedy | set | messageid: <1234543032.98.0.417521487772.issue5237@psf.upfronthosting.co.za> |
2009-02-13 16:37:11 | terry.reedy | link | issue5237 messages |
2009-02-13 16:37:11 | terry.reedy | create | |
|