I am trying to iterate through two lists and check if items in list_1 are in list_2. If the item in list_1 is in list_2 I would like to print the item in list_2. If the ite
for i in list_1: found = False for x in list_2: if i in x: found = True print(x) if found == False: print(i)