myList = safeguarded_domains
searchTerm = domain
searchTerm = domain
# Using list comprehension to find elements containing the searchTerm
matchingItems = [item for item in myList if searchTerm not in item]
print(matchingItems)