df.drop(df.index[-2]) df.drop(df.index[[3, 4]]) df.drop(['row_1', 'row_2']) df.drop('column_1', axis=1) df[df.name != 'cell'] df.reset_index()