how to drop columns in pandas using index 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 columns from dataframe
df.drop('col_name',1) #1 drop column / 0 drop row