find a word in a column pandas code example
Example 1: pandas filter string contain
df[df['A'].str.contains("hello")]
Example 2: column contains substring python
df2 = df.filter(regex='spike')
print(df2)
df[df['A'].str.contains("hello")]
df2 = df.filter(regex='spike')
print(df2)