I have two columns and I would like to create a list for each row. Thus, each list would contain two values; the values of each column for that specific row. For example:
A B
1 2
3 4
5 6
I would like to have a list for each row of values i.e. [1,2], [3,4], [5,6]
Could you help me with this one please?