I have a python list which contains numpy arrays like:
a = [Numpy array 1, Numpy array 2, Numpy array 3]
These Numpy arrays are all 2D numpy arrays.
Now if i pick any two Numpy arrays from my list 'a' randomly and make a tuple, say,
b = (Numpy array 1, Numpy array 2)
How can i detect which arrays were picked i.e.
Numpy array 1, Numpy array 2
and which weren't i.e
Numpy array 3?
Let me repharse my question: Which numpy array from my list 'a' is not present in the tuple 'b'?