Skip to content Skip to sidebar Skip to footer

Csv Io Python: Converting A Csv File Into A List Of Lists

How to convert a csv file into a list of lists where each line is a list of entries with in a bigger list? I'm having trouble with this because some of my entries have a comma in t

Solution 1:

in your data '2,2' is one string. But csv reader can deal with this:
import csv
result = []
with open("data", 'r') as f:
        r = csv.reader(f, delimiter=',')
        # next(r, None)  # skip the headers
        for row in r:
            result.append(row)

print(result)

[["'1'", "'2'", "'3'"], ["'1", "1'", "'2", "2'", "'3", '3']]

Post a Comment for "Csv Io Python: Converting A Csv File Into A List Of Lists"