python data frame how to remove column code example
Example 1: drop a column pandas
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Example 2: drop columns pandas
df.drop(columns=['B', 'C'])
Example 3: df drop column
df = df.drop(['B', 'C'], axis=1)