In Python, what is the syntax for a statement that, given the following context:
words = 'blue yellow'
would be an if statement that checks to see if words
contains the word "blue"? I.e.,
if words ??? 'blue':
print 'yes'
elif words ??? 'blue':
print 'no'
In English, "If words contain blue, then say yes. Otherwise, print no."