I have a list of numbers
ex_list = [0, 3, 5] The amount of numbers is dynamic(usually).
I have a data frame variable:
ex_df = pd.read_csv(*some df*)
Is it possible to create a copy of this ex_df for each of the variables in ex_list and name it:
ex_df_0
ex_df_3
ex_df_5
Each of those will be a copy of ex_df