You can find the index in the following way-
>>> ["ace", "tot", "pen"].index("pen")
2
Note that while this is perhaps the cleanest way to answer the question as asked, index is a rather weak component of the list API, and I can't remember the last time I used it in anger. It's been pointed out to me in the comments that because this answer is heavily referenced, it should be made more complete.