Hi,
I have a tab-delimited file as below:
A    3    A    6
B    6    B    9
C    0    C    2
I wish to read the file in as below:
LIST = [['A', '3'], ['B', '6'], ['C', '0'], ['A', '6'], ['B', '9'], ['C', '2']]
The order is not important. I am only concerned that each row is read in increments of two and assigned to a sub list.
Any suggestions?
Thanks, S :-)