I need to take a .csv file, open the file, read the file, then create a database, which is a dictionary whose keys are years and values are a list with a tuple in it, like so:
db = {2002:[('Andrew', 5, 63, 75000)], etc…}
The categories that I need are 'Name', Category, deaths, DamageMillions
This is a snap of the data that I am working with:

How would I do this?
Edit: I know how to open and read the file, I just don't know how to create the database.