So lets say I have a list like this
color = ['blue', 'green', 'red', 'white', 'hurley', 'maladroit']
What I want to do here is detect when the list 'color' only consists of elements that aren't colors which are 'hurley' and 'maladroit'.
So something like:
#If the list color has at least one color in it (E.g)color = ['blue','white','maladroit']
print('Nothing to see here')
#If the list only consists of elements that aren't colors
#(E.g)color = ['hurley','maladroit']
print("I don't see colors.... I actually legit don't...")