cara menghapus kolom dari dataframe di python
del df['column']
Bewildered Barracuda
del df['column']
cols = [c for c in df.columns if c.lower()[:6] != 'string']
df=df[cols]