Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
list = ['text 1', 'text 2', 'text 3' , 'text 4'] list2 = ['1', '2']
text3 text4
list1 = ['text 1', 'text 2', 'text 3' , 'text 4'] list2 = ['1', '2'] list3= [l1 for l1 in list1 if not any(l2 in l1 for l2 in list2)]
list1 = ['text 1', 'text 2', 'text 3' , 'text 4'] list2 = ['1', '2'] [x for x in list1 if not any([y in x for y in list2])] # ['text 3', 'text 4']