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?
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.
|
|
Reference: Data Structures > More on Lists |
||||
|
|
|
One thing that is really helpful in learning Python is to use the interactive help function:
which will often lead you to the method you are looking for. |
|||
|
|
|||||
|
|
|||||||||
|
|
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
|
||||
|
|
|
All of the proposed functions here reproduce inherent language behavior but obscure what's going on.
Why write a function with exception handling if the language provides the methods to do what you want itself? |
|||
|
|