标签: python pandas
我有一个我想要回收的数据帧(df)。它充满了数据,我想从这个数据框中删除所有内容。 df.drop()会工作吗?
由于
答案 0 :(得分:1)
如果你想释放一些空间
import gc del adios_df gc.collect()