Computer >> Computer tutorials >  >> Programming >> Python

How to find the index of an item given a list containing it in Python?


Position of an element in a list (any sequence data type for that matter) is obtained by index() method. This method finds first instance of occurrence of given element.

>>> L1=[45, 32, 100, 10, 24, 56]
>>> L1.index(24)
4