I'm very novice in python. I have an unchanging csv, here's an example (I just printed it by row in the python console)
['george', 'williams', '277389', 'susan thompson', '2042228888']
['john', 'smith', '833999', 'george smith', '2041118833']
['michael', 'jackson', '281038', 'ronald jackson', '2041128493']
these are the field titles
['firstname', 'lastname', 'idnumber', 'emergency contact', 'emerg contact ph']
I need to be able to type in the id number, which initiates a search through the csv, and outputs the individual's firstname, lastname, emergency contact, phone number. Any thoughts? I really need to know where to start, i.e., should I read the contents of the csv into a dict