I want to delete multiple columns from my dataset. These columns are in random positions and I have their names. For the moment I delete them as follows.
import pandas as pd
data = pd.read_csv('data.cvs')
del data['021']
del data['hg1']
del data['3bm']
del data['og1']
del data['36m']
del data['y7p']
del data['dk4']
Can someone tell me how to simplify that deletion of columns in fewer lines of code.