On 12/30/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Can't you filter them out before the loop ?
rows=[filter(lambda x: x is not None, chunk) for chunk in
map(None,*[iter(a)]*3)]
You would probably still want to deal with those empty slots so that the table is balanced.
-- David

