I have a list of 200 pandas dataframes.
I know I can do:
df1, df2, df3, ..., df200 = [list of 200 dataframes]
Is there a way to elegantly assign distinct variable names to each dataframe?
I have a list of 200 pandas dataframes.
I know I can do:
df1, df2, df3, ..., df200 = [list of 200 dataframes]
Is there a way to elegantly assign distinct variable names to each dataframe?