Hi I am trying to remove a row if column value is equal to more than one value. The following example shows how to compare one value to delete. For example I want to remove if my column value is "a1" or "b1" Also my column header name is 'Sky Product' which has space in between and hence i have used this method. Thanks.
df = df[df['Sky Product'] != 'a1']