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.