Python Built-in Methods – Python List index() Method

Python List index() Method Searches the list for a given item Usage The index() method searches for the first occurrence of the given item and returns its index. If specified item is not found, it raises ‘ValueError’ exception. The optional arguments start and end limit the search to a particular subsequence of the list. Syntax list.index(item,start,end) Parameter Condition Description item Required Any item (of type string, … Continue reading Python Built-in Methods – Python List index() Method