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


Updated on: 2020-02-20T11:22:14+05:30

911 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements