I am iterating over a list and I want to print out the index of the item if it meets a certain condition. How would I do this?
Example:
testlist = [1,2,3,5,3,1,2,1,6]
for item in testlist:
if item == 1:
print position
|
|
Hmmm. There was an answer with a list comprehension here, but it's disappeared. Here:
Example:
Update: Okay, you want a generator expression, we'll have a generator expression. Here's the list comprehension again, in a for loop:
Now we'll construct a generator...
and niftily enough, we can assign that to a variable, and use it from there...
And to think I used to write FORTRAN. |
|||||||||||||||||||
|
|
Use enumerate:
|
||||
|
|
|
What about the following?
If you are not sure whether the element to look for is actually in the list, you need to add a preliminary check.
|
||||
|
|
xrange instead of range as requested (see comments). |
|||||
|
|
Here is another way to do this:
|
||||
|
|
|
If your list got large enough and you only expected to find the value in a sparse number of indices, consider that this code could execute much faster because you don't have to iterate every value in the list.
If you expect to find the value a lot you should probably just append "index" to a list and print the list at the end to save time per iteration. |
|||||
|
I guess that it's exacly what you want. ;-) 'id' will be always the index of the values on the list. |
||||
|
|