I have a master list which regroups every ID I have.
master = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Among all of these ID, I want to exclude some of them. So I did a second list of ID which have to be exclude
exclude = [1, 4, 5]
In your opinion, what is the good operation to make for having :
master_exclude = [2, 3, 6, 7, 8, 9, 10]
If you know what I mean ?
Thank you !