how to print lists horizontally in a table in python3? for eg
lists:
a=[1,2,4,6]
b=[2,4,5,6]
c=[4,5,86,6]
d=[3,4,6]
what I want is horizontally add these lists as 'a' as column and 'b' as another colomn and all the rest of the lists as separate columns.
how to achieve this in python, I tried texttable, tabulate, but no luck they won't allow to create table horizontally