Help With Python

Will McGugan news at NOwillmcguganSPAM.com
Wed Jan 26 11:25:43 EST 2005


> 
>  >>> 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



More information about the Python-list mailing list