快速的找出元素是否在list中 python
生活随笔
收集整理的這篇文章主要介紹了
快速的找出元素是否在list中 python
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
number = [[1,2],[3,2]]
num = np.array(number)
np.argwhere(num=2)
np.argwhere(num==2)
array([[0, 1],
[1, 1]], dtype=int64)
注意:只能是維度相同的時候,才能用該方法。
om ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with diffe
rent lengths or shapes) is deprecated. If you meant to do this, you must specify ‘dtype=object’ when creating the ndarray
np.argwhere(num==2)
array([], shape=(0, 1), dtype=int64)
np.argwhere(num==3)
array([], shape=(0, 1), dtype=int64)
總結
以上是生活随笔為你收集整理的快速的找出元素是否在list中 python的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 鲍捷 | 知识表示——面向实战的介绍
- 下一篇: 梁家卿 | 百科知识图谱同步更新