how to delete a column from a dataframe in python code example
Example 1: drop columns pandas
df.drop(columns=['B', 'C'])
Example 2: drop a column from dataframe
#working with "text" syntax for the columns:
df.drop(['column_nameA', 'column_nameB'], axis=1, inplace=True)
Example 3: how to delete a column from a dataframe in python
del df['column']