I have a situation, in this moment i have a lot of variables in my python environment, i want to to remove this variables with some function. I know that in R i use the function rm() to remove all variables i want. The question is, Is there such a variable like that in python?.
For example,
import pandas as pd
df = pd.DataFrame()
Here i create a object, now i want remove it of the python environment, i have used list.remove(df).
Thank you.