Another simple way could be to use query method, combined with f-string and NOT.
It should be like: df.query(f"not {col}.str.contains('{word}')")
df.query(f"not {col}.str.contains('{word}')")