What is a good way to find the index of an element in an array in python? Note that the array may not be sorted. Is there a way to specify what comparison operator to use?
|
1
|
|
|
|
|
|
The best way is probably to use the list method .index. For the objects in the list, you can do something like:
with any special processing you need. You can also use a for/in statement with enumerate(arr) Example of finding the index of an item that has value > 100.
|
|||
|
|
|
|
Depending on what you need to do, searching in an unsorted array is not a good idea. That you're asking about a "good way" makes one thing you do care about efficiency, and you must realize that changing your algorithm (to binary search in a sorted array, for instance) will provide much higher benefits than micro-optimizing the method you use to linearly search it. |
||
|
|
|
|
how's this one?
Usage:
|
||||||
|
|
|
The index method of a list will do this for you. If you want to guarantee order, sort the list first using
Or:
|
||
|
|
|
|
From Dive Into Python:
|
||
|
|
|
|
There is the
|
||
|
|
