pandas match string in column code example
Example 1: dataframe column contains string
df[df['A'].str.contains("hello")]
Example 2: panda search strings in column
df[df['A'].str.contains("hello")]
Example 3: column contains substring python
df2 = df.filter(regex='spike')
print(df2)