Lets say I have a text file that contains
1-student ID
2-First Name
3- Last Name
4- City
5- gender
They're separated by commas and every line of information has the same sequence as all the others.
I need to store the city, for instance, alone, so I can know if they're a good candidate for the trip (they specified specific cities).
Example from the text file:
1234567890, Sarah, Johnson, female, Oregon
1029384756, John, Pitt, male, Tampa
Which type of list do I use? And how can I separate each info in that list?