I have a data frame given below
news score
testing tools 12
test match 32
he is testing 332
test is done 23
I want a result like this
news score
test match 32
test is done 23
ddf[ddf['news'].str.contains('test', regex= False)]
ddf[ddf['news'].str.contains('test', regex= False)]