Search code examples
pythonlistposition

Position in an list?


I will check if a word exists in a list. How can I show the position of this word?


Solution

  • list = ["word1", "word2", "word3"]
    try:
       print list.index("word1")
    except ValueError:
       print "word1 not in list."
    

    This piece of code will print 0, because that's the index of the first occurrence of "word1"