numpy返回array中元素的index方法

时间:2022-10-01 13:33:48

如下所示:

?
1
2
3
4
5
import numpy
a = numpy.array(([3,2,1],[2,5,7],[4,7,8]))
itemindex = numpy.argwhere(a == 7)
print (itemindex)
print a

以上这篇numpy返回array中元素的index方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/vernice/article/details/50990919