On Fri, 10 Sep 2004 10:42:08 -0500 Jeff wrote:
> In the case of Python, this would become
> print "%(width)*(num)d" % {'width': width, 'num': num}
If this did change, I'd prefer:
print "%(num)*(width)d" % {'width': width, 'num': num}
^^^ ^^^^^
in keeping with "in this order" (PyEssenRef 2nd ed. - P.47)
Pierre