remove columns from data set code example
Example 1: remove column from dataframe
df.drop('column_name', 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]