Pandas: How to Drop Rows that Contain a Specific String

32

Pandas: How to Drop Rows that Contain a Specific String -

df[df["col"].str.contains("this string")==False]

Comments

Submit
0 Comments