码迷,mamicode.com
首页 > 其他好文 > 详细

获得一个list中某元素的索引值

时间:2017-08-30 19:54:55      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:alt   class   元素   style   span   image   一个   images   numpy   

list = [1,2,3,3,2,1]
list.index(1) # 只能获得首个1的索引值

如果要获得所有该元素的索引值

import numpy as np
arr = np.array(list)
index = np.where(arr==1)
index[0]

然后才能用

for i in index[0]:
    print(i)

技术分享

 

获得一个list中某元素的索引值

标签:alt   class   元素   style   span   image   一个   images   numpy   

原文地址:http://www.cnblogs.com/cymwill/p/7454643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!