How to delete duplicates from a list and then remove elements that exist in another list with Python

1 Answer

0 votes
list1 = [1, 2, 2, 8, 3, 1, 5, 1, 2, 3, 3, 5, 5, 6, 7, 5, 5, 8, 8, 8]

list2 = [1, 2, 3]

result = list(set(list1) - set(list2))

print(result)


 
'''
run:
 
[8, 5, 6, 7]

'''

 



answered Dec 23, 2024 by avibootz
...