I want to change the name of an dataframe using variables.
db = pd.Dataframe()
sopa = ['cebola','batata']
for sopa_id in sopa:
sopa_id = db
I want that the output to be:
cebola = db
batata = db
The goal is that each one of the variable get the dataframe name.