pandas find rows with a given string in column code example
Example 1: pandas filter string contain
df[df['A'].str.contains("hello")]
Example 2: get columns containing string
df2 = df.filter(regex='spike')
print(df2)
df[df['A'].str.contains("hello")]
df2 = df.filter(regex='spike')
print(df2)