Lets say I have a csv as such:
make,model,UCity,UHighway,year
Alfa Romeo,Spider Veloce 2000,23.3333,35,1985
Ferrari,Testarossa,11,19,1985
Dodge,Charger,29,47,1985
Dodge,B150/B250 Wagon 2WD,12.2222,16.6667,1985
I want to access the 'Ucity' and 'Uhighway' columns of specific rows based on user input. So lets say the user inputs 'dodge' as the make and 'charger' as the model and '1985' as the year. Using the users input how would I then access '29' and '47' which is the respective 'Ucity' and 'Uhighway' if possible. I appreciate any and all feedback thank you!