how to rget rid of a column in a pandas dataframe code example
Example 1: how to delete a column from a dataframe in python
del df['column']
Example 2: how to delete a column in pandas dataframe
delete column from pandas data frame
del df['column']
delete column from pandas data frame