remove duplicates from list 1 if they appear in list 2 code example
Example: remove duplicates python
mylist = ["a", "b", "a", "c", "c"]
mylist = list(dict.fromkeys(mylist))
mylist = ["a", "b", "a", "c", "c"]
mylist = list(dict.fromkeys(mylist))