In article 
<[EMAIL PROTECTED]>,
 alex23 <[EMAIL PROTECTED]> wrote:

> ' '.join((str(x * x) for x in range(1,6)))

Aren't the outer set of parens redundant?  This works just as well:

' '.join(str(x * x) for x in range(1,6))
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to