delete on column pandas code example
Example 1: drop a column pandas
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Example 2: remove columns that start with pandas
cols = [c for c in df.columns if c.lower()[:6] != 'string']
df=df[cols]