I have a CSV file with about 200.000 records.
Each record has a title number, and some string information:
Title_1, Line_1_1, Line_1_2
Title_2, Line_2_1, Line_2_2
Title_3, Line_3_1, Line_3_2
I need to read this file into a list that looks like this:
data = [[Title_1, Line_1_1, Line_1_2], [Title_2, Line_2_1, Line_2_2], [Title_1, Line_3_1, Line_3_2]]
How can import this CSV to the list I need using Python?