Alright, basically I have a list of words in a file and I load each word from each line into the array.  Then basically the question is how do I check if the input word matches multiple words in the list.<br><br>Say someone input "test", how could I check if that word matches these list of words:<br>
<br>test<br>testing<br>tested<br><br>Out of the list of<br><br>Hello<br>blah<br>example<br>test<br>ested<br>tested<br>testing<br><br>I want it to loop then check if the input word I used starts any of the words in the list so if I typed 'tes'<br>
<br>Then:<br><br>test<br>testing<br>testing<br><br>would be appended to a new array.<br><br>I'm unsure how to do this in python.<br><br>Thanks in advanced.<br>