How to check if Pandas column has value from list of string?
You can use the isin function of pandas
df['Names'].isin(kw)
Use apply
and lambda
like:
df['Names'].apply(lambda x: any([k in x for k in kw]))
0 True
1 True
2 True
3 True
4 False
Name: Names, dtype: bool