>>> print "Spam, " * 510 + "Spam"

Or if you have 2.4..

>>> print ", ".join( "Spam" for _ in xrange( 511 ) )

Although, the replys with links will ultimately be more helpful!

Will McGugan
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to