Donn Ingle wrote: > Now, is there something quick like: >>>> s = "%s/2 and %s/1" % ( "A", "B" ) >>>> print s > B and A > > ?
GNU glibc printf accepts a format string:
printf ("%2$s and %1$s", "A", "B");
to produce what you want -- but not Python, AFAIK.
Mel.
--
http://mail.python.org/mailman/listinfo/python-list
