如何找到项目在列表中出现的第n次索引?

时间:2014-03-08 08:56:50

标签: python indexing iterable

假设:

x = ['w', 'e', 's', 's', 's', 'z','z', 's']

每次出现s都会出现在以下索引中:

1st:2
2:3
3:4
4:7

如果我x.index('s'),我将获得第一个索引。

如何获取第4个s的索引?

7 个答案:

答案 0 :(得分:10)

使用list comprehensionenumerate

>>> x = [ 'w', 'e', 's', 's', 's', 'z','z', 's']
>>> [i for i, n in enumerate(x) if n == 's'][0]
2
>>> [i for i, n in enumerate(x) if n == 's'][1]
3
>>> [i for i, n in enumerate(x) if n == 's'][2]
4
>>> [i for i, n in enumerate(x) if n == 's'][3]
7

答案 1 :(得分:5)

如果您不想存储每次出现的索引,或者想要使用任意迭代,那么就像:

from itertools import islice

def nth_index(iterable, value, n):
    matches = (idx for idx, val in enumerate(iterable) if val == value)
    return next(islice(matches, n-1, n), None)

x = [ 'w', 'e', 's', 's', 's', 'z','z', 's']
idx = nth_index(x, 's', 4)
# 7

请注意None中的默认值为next。您可能希望将其更改为其他内容,或将其删除并捕获StopIteration并引发另一个更合适的异常(例如ValueError,以便它与list.index行为更紧密相关)。

答案 2 :(得分:2)

获取项目的索引:

return [index for index, char in enumerate(x) if char == 's']

获取角色本身:

return [char for index, char in enumerate(x) if char == 's']

或者获取字符/索引对的元组: (感谢falsetru指出一个更简单的解决方案)

pairs = [(index, char) for index, char in enumerate(x) if char == 's']

答案 3 :(得分:0)

def find_nth_character(str1, substr, n):
    """find the index of the nth substr in string str1""" 
    k = 0
    for index, c in enumerate(str1):
        #print index, c, n  # test
        if c == substr:
            k += 1
            if k == n:
                return index


str1 = "B.765.A87_43.Left.9878.xx8"
substr = '.'
occurance = 4

print "%s #%d at index %d" % (substr, occurance, find_nth_character(str1, substr, occurance))

答案 4 :(得分:0)

这是使用itertools.count和生成器表达式的更多Pythonic方法:

In [24]: def get_nth_index(lst, item, n):
    ...:     c = count()
    ...:     return next(i for i, j in enumerate(x) if j=='s' and next(c) == n-1)

演示:

In [25]: get_nth_index(x, 's', 2)
Out[25]: 3

In [26]: get_nth_index(x, 's', 3)
Out[26]: 4

In [27]: get_nth_index(x, 's', 4)
Out[27]: 7

In [28]: get_nth_index(x, 's', 5)
---------------------------------------------------------------------------
StopIteration                             Traceback (most recent call last)
<ipython-input-28-fc4e5e8c31ef> in <module>()
----> 1 get_nth_index(x, 's', 5)

<ipython-input-24-5394f79b3c30> in get_nth_index(lst, item, n)
      1 def get_nth_index(lst, item, n):
      2     c = count()
----> 3     return next(i for i, j in enumerate(x) if j=='s' and next(c) == n-1)

StopIteration: 

In [29]: 

正如您所看到的,如果无法找到匹配项,它将引发StopIteration异常。您还可以将默认参数传递给next()函数以返回默认值,而不是引发异常。

答案 5 :(得分:0)

我们可以扩展内置列表类的功能。通过继承。

In [64]: class List(list):
       :     def __init__(self, *val):
       :         self.extend(list(val))
       :
       :
       :     def findidx(self, val, n=None):
       :         '''return the occurances of an object in a list'''
       :
       :         if n == None:
       :             return [i for i, v in enumerate(self) if v == val]
       :
       :         return [i for i, v in enumerate(self) if v == val][n]

,有两种使用此类的方法。请参阅以下示例以了解。

In [65]: c = List(4, 5, 6, 7, 2, 5, 4 ,4) # enter the elements of the list as a argument

In [69]: c.findidx(4, 0) # search 4's 0th(1) occurance
Out[69]: 0

In [72]: c.findidx(4, 1) # find 4's 1st(2) occurance
Out[72]: 6

In [66]: c.findidx(4) # find all occurances of 4
Out[66]: [0, 6, 7]

In [67]: c.findidx(4)[0] # first occurance
Out[67]: 0

In [67]: c.findidx(4)[2] # third occurance
Out[67]: 7

In [69]: c[0]# for verification
Out[69]: 4

In [70]: c[7]
Out[70]: 4

`

答案 6 :(得分:0)

您可以使用它来找到最后一个位置

其中a是数组

t=(a.index(0)+a.count(0))-1

您可以将数字增加到-2或-3以从最后查找所需数字的位置

注意:必须对列表进行排序。您可以使用sort()对其进行排序

例如: a.sort()

for more inbuilt function in list click here

相关问题