df.drop(['column_1', 'Column_2'], axis = 1, inplace = True) # Remove all columns between column index 1 to 3 df.drop(df.iloc[:, 1:3], inplace = True, axis = 1)