I have 20 excel files, each represent a year, each one of them have 10 sheets of different (but related to each other) data for that year.
How to properly import them all in pandas dataframe for purpose of Data analysis for the whole period?
To illustrate more, for example: Should I use a Dict for each excel file (year), where keys are sheetname and values are sheet content (the data frame)? Or What is the proper method in this scenario?
Edit 1: The data is Our Football league information, each season in a separate excel file, that has multiple sheets (sheets data example: clubs, players, matches, goals, cards...etc). I have 20 years worth of data, I’m about to analyze it but i got overwhelmed by different ways of importing them using pandas.
Thanks