I'm new here and I'm as well new to programming. I'm trying to learn myself a bit of python and I've run into problem. I have a very specific csv file which looks like this (I was able to do it in simplier csv files using advices here Creating a dictionary from a csv file? , but i'm struggling now ):
1 row: Names,0,1900,1901, ---- ,2015
2 row: Aaron,0,0,0, ----, 44
x row: Randomname,0,number_of_babies_named_by_Randomname_in_year_1900, number_of_babies_named_by_Randomname_in_year_1901
there is total number of 3550 rows
Is there any way to create a dictionary I could navigate in so I'd be able to write a function to tell me in which year was a specific name the most popular or which is the most common used name overall between 1900 and 2015?
Thanks in advance! (sorry for potential grammar errors)