I was wondering if it was possible to do the following:
very_special = ["special"]
my_list = ["stuff", very_special]
if "special" in my_list:
print ("Found it")
I was wondering if you could do this in some way, having the code look through the whole thing, including the lists inside the list.