how ot drop a column in python do i use the column name or the column number code example
Example 1: drop a column pandas
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Example 2: how to delete a column from a dataframe in python
del df['column']