drop column from table from pandas code example
Example 1: pandas dataframe delete column
del df['column_name']
Example 2: how to delete a column from a dataframe in python
del df['column']
del df['column_name']
del df['column']