Is it possible to create a new dataframe in python based on concatenated strings. I have a loop and need to set up several dataframes a the output.
So in short is there a way of getting the below to work?
a='Blue'
b='Green'
Desired output:
BlueGreen=pd.DataFrame()
or
a+b=pd.DataFrame()