itlist[i] = (x+(i*10) for i,s in (i,count()) for x in s)

oops, that would be

     itlist[i] = (x+(i*10) for i,s in [(i,count())] for x in s)

or equivalent, kind of ugly anyway.

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

Reply via email to