David Stanek wrote:
> 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.
In that case, it doesn't seem like a None issue but a "if None, give me
an empty/place holder product" issue. Just change the filter to another
map to replace it.

Reply via email to