I want to assign distinct variable names to a list of 130 dataframes.
With fewer number of dataframes, I can do:
df1, df2, df3 = [list of dataframes]
However, with 130 of them, there must be a better way to achieve this.
I have tried:
[list of dataframe names] = [list of dataframes]
But, this does not work.
Ultimately, I want to create a list of dataframes each with distinct variable names, so that I should be able to access each dataframe by variable name.