np.argwhere( a )
    Find the indices of array elements that are non-zero, grouped by element.
    返回非0的数组元组的索引,其中a是要索引数组的条件。
    eg:输出数组中所有大于1的数字的索引值。

    1. x=np.arange(6).reshape(2,3)
    2. x
    3. array([[0,1,2],
    4. [3,4,5]])
    5. np.argwhere(x>1)
    6. array([[0,2],
    7. [1,0]
    8. [1,1]
    9. [1,2]],dtype=int64)