I'm using Python to try and check if a string contains certain words. It can contain all or some of the words.
listCall = ('Azura', 'Fly', 'yellow')
readME = 'the color is yellow'
if listCall in readME:
print 'we found certain words'
else:
print 'all good'