Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For a list ["foo","bar","baz"] and an item in the list "bar",
What's the cleanest way to get its index (1) in Python?

share|improve this question

6 Answers

up vote 302 down vote accepted
>>> ["foo","bar","baz"].index('bar')
1

Reference: Data Structures > More on Lists

share|improve this answer

One thing that is really helpful in learning Python is to use the interactive help function:

>>> help(["foo", "bar", "baz"])
Help on list object:

class list(object)
 ...

 |
 |  index(...)
 |      L.index(value, [start, [stop]]) -> integer -- return first index of value
 |

which will often lead you to the method you are looking for.

share|improve this answer
29  
Upvoted for actually showing how to find the solution. – Baldur Mar 9 '11 at 12:10
6  
Holy crap, never knew of this.. – jmoz Aug 27 '12 at 15:16

index() returns the first index of value!

| index(...)
| L.index(value, [start, [stop]]) -> integer -- return first index of value

def all_indices(value, qlist):
    indices = []
    idx = -1
    while True:
        try:
            idx = qlist.index(value, idx+1)
            indices.append(idx)
        except ValueError:
            break
    return indices

all_indices("foo", ["foo","bar","baz","foo"])
share|improve this answer
3  
this post also helps: stackoverflow.com/questions/4664850/… – Hongbo Zhu Dec 7 '11 at 10:19
a = ["foo","bar","baz",'bar','any','much']

b = [item for item in range(len(a)) if a[item] == 'bar']
share|improve this answer
?? Why would you do it like this? If you wanted to use a list comprehension you'd do it like b = [item for item in a if a == 'bar'][0] – Michael Matthew Toomim Sep 29 '12 at 22:26
This way you can get more than one index – erickrf Dec 23 '12 at 20:38
This is also great if you need more than simple equality. [ii for ii in range(len(a)) if a[ii][0] == 'b'] gives you the index of everything that starts with 'b', for example - not helpful with strings, but sorting tuples on the nth key is handy. – polm23 Feb 14 at 5:32
@MichaelMatthewToomim: The code in the answer returns the list of indices with matching values, like` [1, 3, 19]. Your list comprehension will return a list like ['bar','bar','bar']` which really isn't helpful. – André Caron Apr 17 at 0:56

Problem will arrise if the element is not in the list. You can use this function, it handles the issue:

if element is found it returns index of element else returns -1

def find_element_in_list(element,list_element):
        try:
            index_element=list_element.index(element)
            return index_element
        except ValueError:
            return -1
share|improve this answer

All of the proposed functions here reproduce inherent language behavior but obscure what's going on.

[i for i in range(len(mylist)) if mylist[i]==myterm] # get the indices
[each for each in mylist if each==myterm] # get the items
mylist.index(myterm) if myterm in mylist else None # get the first index and fail quietly

Why write a function with exception handling if the language provides the methods to do what you want itself?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.