su, columsn and deleting pandas code example
Example 1: pandas drop columns by index
cols = [1,2,4,5,12]
df.drop(df.columns[cols],axis=1,inplace=True)
Example 2: remove a column from dataframe
del df['column_name'] #to remove a column from dataframe