How do I print a table from two lists that have varying lengths (each list being a column)?

Example:

>>> l1=['Cat', 'Dog', 'Gorilla', 'Ladybug']
>>> l2=['Cat', 'Dog']
>>> print_chart(l1, l2)
Cat        Cat
Dog        Dog
Gorilla
Ladybug

Using rjust may be useful.

link|improve this question

79% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Using itertools.izip_longest:

for a, b in izip_longest(l1, l2, fillvalue=''):
    print "{0:20s}\t{1:20s}".format(a, b)
link|improve this answer
1  
+1. I might suggest as kwarg to izip_longest: fillvalue="" instead. But what you have is quite explicit which is of course the ultimate goal. – bernie Jul 23 '11 at 20:17
@Adam: I just read the documentation, but it didn't click. Thanks, fixed it. – Björn Pollex Jul 23 '11 at 20:18
Thank you! This worked exactly. – ghee22 Jul 25 '11 at 14:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.