For a list ["foo","bar","baz"] and a variable "bar", what's the cleanest way to get its index 1 in python?
views:
4471answers:
2
+4
A:
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.
davidavr
2008-10-07 13:19:56