I have the following DataFrame:
daysago line_race rating rw wrating line_date 2007
If you want to delete rows based on multiple values of the column, you could use:
df[(df.line_race != 0) & (df.line_race != 10)]
To drop all rows with values 0 and 10 for line_race.
line_race