What is the fastest way to access the values that are at the opposite of a particular given slice? Some code:
import numpy as np
A = np.arange(2,100000)
S = slice(79,78954,34)
A[S] #This is all the values I do NOT want.
A[?] #All the values I want are the values in A but not in A[S], what is ?.