remove columns that start with pandas code example
Example 1: how to delete a column from a dataframe in python
del df['column']
Example 2: remove a column from dataframe
del df['column_name'] #to remove a column from dataframe
Example 3: remove columns that start with pandas
cols = [c for c in df.columns if c.lower()[:6] != 'string']
df=df[cols]