I want to print different size lists side by side.
I'm using
In: for n,g in zip(ten_pos,real_pos):
print (n + "\t\t\t\t\t\t" + g)
But If one list has 5 item and the other one has 20, It only prints 5 and 5 and I want 5 and 20.
Is there an easy way to solve this?