Hi I have a list of keywords.
keyword_list=['one','two']
DF,
Name Description
Sri Sri is one of the good singer in this two
Ram Ram is one of the good cricket player
I want to find the rows which are having all the values from my keyword_list.
my desired output is,
output_Df,
Name Description
Sri Sri is one of the good singer in this two
I tried, mask=DF['Description'].str.contains() method but I can do this only for a single word pls help.