string contains python pandas code example
Example 1: dataframe column contains string
df[df['A'].str.contains("hello")]
Example 2: pandas string does not contain
# simply use the invert operator '~' with 'str.contains'
new_df = df[~df["col"].str.contains(word)]