If you want to test whether all elements along a given axis of a NumPy array evaluate to True, use np.all.
np.all
In the code above, I check if all elements are less than 3 in each column or row.
Link to the source code.