Pandas Get a List Of All Data Frames loaded into memory

前端 未结 3 515
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-09 19:01

I am using pandas to read several csv files into memory for processing and at some point would like to list all the data frames I have loaded into memory. Is there a simple

3条回答
  •  失恋的感觉
    2020-12-09 19:33

    I personally think this approach is much better (if in ipython).

    import pandas as pd
    %whos DataFrame
    

提交回复
热议问题