-4

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 them

a file like:

'1','2','3'  
'1,1','2,2','3,3'  

becomes:

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

instead of:

[['1','2','3']['1,1','2,2','3,3']
Cœur
  • 37,241
  • 25
  • 195
  • 267
Jack
  • 3
  • 3

1 Answers1

0
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']]
LetzerWille
  • 5,355
  • 4
  • 23
  • 26