String/ List contains nested list input

Like that maybe?

liste1, liste2=IN
z=[]


for element in liste2:
	
	if element in liste1:
		z.append(True)
	else:
		z.append(False)
OUT=z

You can also use “==” node and List.Map to do same thing. I usually use Python codes to do my stuff.