Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Where is the element in the list

  • index
words = ['cat', 'dog', 'snake', 'camel']
print(words.index('snake'))

print(words.index('python'))

Output:

2
Traceback (most recent call last):
  File "examples/lists/index.py", line 6, in <module>
    print(words.index('python'))
ValueError: 'python' is not in list