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']
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…