We have a list of 2 dataframes & want to create separate dataframes. Currently using the following code to achieve that:
for i in range(len(listOfDf)):
globals()[f"df_{i}"] = listOfDf[i]
However, I want to name the dataframes as "Events" & "Occurance" respectively. How can this be achieved ?