Given the numpy array a1, write one line of code that create…
Given the numpy array a1, write one line of code that creates a new one-dimensional numpy array called a2, which only contains values not equal to 7. Store the new array in the variable a2. a1 = np.array([[2,7,9], [3,7,7], [7,7,4]])
Read Details