ok, I have a list of numbers and i want to return values in a range that are not in the list of numbers...
I'm thinking of something like this:
[ number for number in range(1, 10) if != nums ]
However, This always prints all the numbers in that range...
I'm not sure what else i'm missing.
Thanks