I have a dataframe column of strings(a sentence) which is read from the excel file and I have a list of strings(keywords)
df['Purpose'] = ['Central Team Offiste Material - R2 Strengths Profiler test x 7', 'Project Green conference', 'had to book flight as late for flight due to transportation', 'Dublin Transition', 'Training - Dublin transition', 'HRLT Offsite in Dublin - seat choice', 'Baggage fare plus upgrade in flight class', 'Due to a family emergency Jeremy needed to fly home earlier', 'flight back to london after various clients meeting', 'Travel to UK']
and
Rule2_list=['Dublin', 'stakeholders', 'Travel', 'interviews', 'workshop', 'due-diligence', 'business trip', 'client', 'risk']
I want to check if any of the list element in Rule2_list is present in df['Purpose']
How do i achieve that? Any help is much appreciated