If I have a csv file with only two rows containing an x and y coordinate, how would I go about taking row[0] and all its x points and appending them to a list?
In other words, lets say I have a list:
[[1,2], [3,5]]
Is there a way to take 1 and 3 and put them into a new list, and then 2 and 5 into another list?