Comment soustraire 2 listes dans Python
[item for item in x if item not in y]
Velvet Thunder
[item for item in x if item not in y]
myList1 = {12,9}
myList2= {3,7}
subtraction = myList1-myList2
print(subtraction)