This should work for all element lengths (if they are strings. It is assumed that your data is in two separate lists firstand second.
maxlen = len(max(first, key=len))
for i,j in zip(first, second):
print "%s\t%s" % (i.ljust(maxlen, " "), j)
Python 2.x, 2.6.