On 9/4/07, Hrvoje Niksic wrote:
> Python isn't too happy about adding individual keyword arguments after
> an explicit argument tuple.  Try this instead:
>
> for row in izip_longest(*d, **dict(fillvalue='*')):
>      print ', '.join(row)

Or simply:

for row in izip_longest(fillvalue='*', *d):
    print ', '.join(row)

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

Reply via email to