df drop coliumn code example
Example 1: df drop column
df = df.drop(['B', 'C'], axis=1)
Example 2: drop columnd python
>>> df.drop(columns=['B', 'C'])
A D
0 0 3
1 4 7
2 8 11
df = df.drop(['B', 'C'], axis=1)
>>> df.drop(columns=['B', 'C'])
A D
0 0 3
1 4 7
2 8 11