pandas dataframe remove a column code example
Example 1: drop a column pandas
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Example 2: drop a column in pandas
note: df is your dataframe
df = df.drop('coloum_name',axis=1)
Example 3: drop column pandas
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
# Remove all columns between column index 1 to 3
df.drop(df.iloc[:, 1:3], inplace = True, axis = 1)