check if column name contains string pandas code example
Example 1: dataframe column contains string
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)