how to select one item in a list and subtract the rest from that item code example
Example: subtract list from list python
>>> z = list(set(x) - set(y))
>>> z
[0, 8, 2, 4, 6]
>>> z = list(set(x) - set(y))
>>> z
[0, 8, 2, 4, 6]