drop values in pandas column and create new dataframe 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: drop a column in pandas
df = df.drop(df.columns[[0, 1, 3]], axis=1) # df.columns is zero-based pd.Index