I have a list of 20000 Products with their Description This shows the variety of the products
I want to be able to write a code that searches a particular word say 'TAPA' and give a output of all the TAPAs
I found this   Find a specific word from a list in python , but it uses startswith which finds only the first item for example: 
 new = [x for x in df1['A'] if x.startswith('00320')]
 ## output ['00320671-01 Guide rail 25N/1660', '00320165S02 - Miniature rolling table']
How shall i find for the second letter, third or any other item
P.S- the list consists of strings, integers, floats
 
     
     
    