I have a list of years:
years = ["2020", "2019", "2018", "2017", "2016", "2015", "2014", "2013"]
And a list of info I want to get from web scraping:
info = ["played_games", "games_won", "efectivity", "championship_won", "finals", "semi-finals", "quarterfinals"]
I need to iterate though years so I can make empty lists with the names of the elements in info + the correspondent year, so I can append the info later, i.e.:
played_games2020 = []
games_won2020 = []
efectivity2020 = []
etc
played_games2019 = []
games_won2019 = []
efectivity2019 = []
etc
Any help would be much appreciated! Regards