how to delete columns in pandas code example
Example 1: drop a column from dataframe
df.drop('column_name', axis=1, inplace=True)
Example 2: python code to drop columns from dataframe
new_df = df.drop(labels='column_name', axis=1)
df = df.drop(labels='column_name', axis=1)
df = df.drop(['list_of_column_names'], axis=1)
Example 3: drop columns pandas
df.drop(columns=['B', 'C'])
Example 4: remove column from dataframe
df.drop('column_name', axis=1, inplace=True)
Example 5: drop a column in pandas
note: df is your dataframe
df = df.drop('coloum_name',axis=1)
Example 6: drop a column from dataframe
df = df.drop('column_name', 1)