How to free memory after the transition object in DataFrame is finished?

how can I release a large number of dataframe, for reading tables in the middle when I run out of them? Thank you

Mar.13,2021

for most Python objects, direct del is fine

a = pd.Dataframe()
del a
Menu