read a column from csv in python code example
Example 1: drop columnd python
>>> df.drop(columns=['B', 'C'])
A D
0 0 3
1 4 7
2 8 11
Example 2: remove a column from dataframe
del df['column_name'] #to remove a column from dataframe
>>> df.drop(columns=['B', 'C'])
A D
0 0 3
1 4 7
2 8 11
del df['column_name'] #to remove a column from dataframe