I think it's safe to assume the values are separated by commas 
Does this help?
To extract just a single column, you can use:
dataList = [item[2] for item in dataList]
Where dataList is the csv data as a list of lists, and 2 is the column index to extract