For context, I am trying to build a script that will output information about the DataFrames I have in memory.
I have a DataFrame with all the DataFrames listed (dflist). I would like to get the Name of the Dataframe out to call a function. df1.shape for example. I am running into an issue with the system seeing df1 as a string.
dflist
|Name|
|df1 |
|df2 |
Thank You.