I have the following Pandas DataFrame object df. It is a train schedule listing the date of departure, scheduled time of departure, and train company.
df
I like using the query method as it's a bit more clear
df = df.query("Train not in ['DeutscheBahn', 'British Rails', 'SNCF']")