remove a column in pandas by position of the column code example
Example 1: drop a column from dataframe
#working with "text" syntax for the columns:
df.drop(['column_nameA', 'column_nameB'], axis=1, inplace=True)
Example 2: delete column in dataframe pandas
df = df.drop(df.columns[[0, 1, 3]], axis=1) # df.columns is zero-based pd.Index