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?
|
feedback
|
|
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.
| ||||
|
feedback
|
|
From Dive Into Python:
| |||
|
feedback
|
|
There is the
| |||
|
feedback
|
|
The index method of a list will do this for you. If you want to guarantee order, sort the list first using
Or:
| |||
|
feedback
|
|
If you just want to find out if an element is contained in the list or not:
| |||
|
feedback
|
|
assuming you want to find a value in a numpy array, I guess something like this might work: Numpy.where(arr=="value")[0] | |||
|
feedback
|
|
how's this one?
Usage:
| |||||||
feedback
|
|
Here is another way using list comprehension (some people might find it debatable). It is very approachable for simple tests, e.g. comparisons on object attributes (which I need a lot):
Of course this assumes the existence (and, actually, uniqueness) of a suitable element in the list. | |||
|
feedback
|
|
I found this by adapting some tutos. Thanks to google, and to all of you ;)
A very simple use:
P.S. scuse my english | |||
|
feedback
|
|
I use function for returning index for the matching element (Python 2.6):
Then use it via lambda function for retrieving needed element by any required equation e.g. by using element name.
If i need to use it in several places in my code i just define specific find function e.g. for finding element by name:
And then it is quite easy and readable:
| |||
|
feedback
|
| |||||
feedback
|