I want to create a Pandas dataframe for each of a list of pickle files.
If I use this code:
dfs = [pd.read_pickle(file) for file in DATA_PROCESSED.iterdir()]
I will get a list, but I want also to make a correspondence between filename and dataframe name. In this case I will get only dfs[0] e.g.
Could you help me?