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 range(len(list_1)): if list_1[i] in list_2[i]: print(list_2[i]) else: print(list_1[i])