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