I have this list that has folders names:
scenarios_list=[2020,2021,2022]
I would like to create a dataframe that adds the name of the folder as this:
for i in scenarios_list:
typology_+i = pd.read_file(path+"\\"+i+"\\"+'data.csv')
so I would have 3 dataframes: typology_2020 typology_2021 typology_2022