Dennis Lee Bieber wrote: > ##aJAPy = "%s %s %s" % ('J' 'A' 'Py','','') > # That should fail -- three format codes, and five output values No. 'JAPy' is a single string, oddly written: >>> 'J' 'A' 'Py' 'JAPy' Peter