I have a CSV file with about 2000 records.
Each record has a string and a category to it.
This is the first line, Line1 This is the second line, Line2 This is the third line, Line3
I need to read this file into a list that looks like this;
List = [('This is the first line', 'Line1'), ('This is the second line', 'Line2'), ('This is the third line', 'Line3')]
How can import this csv to the list I need using Python?