I referred to the solution here - Find column whose name contains a specific string
spike_cols = [col for col in df.columns if 'spike' in col]
However, I want to search for multiple strings at once. For example, I tried to search for string 'keyword' by implementing -
spike_cols = [col for col in df.columns if 'spike | keyword' in col]
This doesn't return the list I desire. Any pointers on how to proceed ?