python中的 np.argwhere()的返回值、

A=np.arange(6).reshape(2,3)
np.argwhere(A>0)

其返回值为,第0行的第2个数‘
第一行的第0个,1 个,2个’

你可能感兴趣的:(python)