How could I identify all the Pandas DataFrames created in my current notebook session?
Something like in SAS seeing all the members in the Work library would be ideal.>
If you mean memory try something like:
for i in dir(): if type(globals()[i]) == pandas.DataFrame: print(i)
or some such.