I'd like to delete columns in a dataframe.
This is how I import the csv:
dffm = pd.read_csv('..xxxxxx.csv', sep=';', engine='python')
Why is it not possible to delete the column "High'?:
            Time        Open    High    Low     Close
Date                    
12.06.20    07:00:00    3046.50 3046.75 3046.00 3046.50
12.06.20    07:00:06    3046.75 3046.75 3046.00 3046.00
12.06.20    07:00:12    3046.00 3046.00 3045.75 3045.75
12.06.20    07:00:18    3046.00 3046.25 3046.00 3046.0
with this line:
dffm = dffm.drop(['High'], axis=1, inplace=True)
error:
"['High'] not found in axis"
 
     
     
    