Data reading problems of CSV files

How do I get all the data in a column of a CSV file in an array format via a script?

There’s no standard structure to csv files. Can you provide a sample file?

I think it's safe to assume the values are separated by commas :grin:

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