I have two list, and I want to print side by side both of them.
list1 =[(15, 'dog'), (10, 'leopard'), (5, 'bird')]
list1 =[(20, 'table'), (23, 'PC'), (13, 'TV')]
When a print them my output is horrible:
List1: List2:
dog Freq --> 15 table Freq --> 20
leopard Freq --> 10 PC Freq --> 23
bird Freq --> 5 TV Fre1 --> 13
I what something like that:
List1: List2:
dog Freq --> 15 table Freq --> 20
leopard Freq --> 10 PC Freq --> 23
bird Freq --> 5 TV Fre1 --> 13
I can't use modules for make table.
Thanks in advance for the help