vote up 5 vote down star
1

For a list ["foo","bar","baz"] and a variable "bar", what's the cleanest way to get its index 1 in python?

flag

2 Answers

vote up 15 vote down check
>>> ["foo","bar","baz"].index('bar')

1;

link|flag
vote up 4 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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