Possible Duplicate:
Accessing the index in Python for loops
list = [1,2,2,3,5,5,6,7]
for item in mylist:
...
How can I find the index of the item I am looking at, at some point in my loop? I can see there is a index()
method for lists
but it will always give me the first index of a value, so it won't work for lists with duplicate items
Have a look at enumerate
>>> for i, season in enumerate('Spring Summer Fall Winter'.split(), start=1):
print i, season
1 Spring
2 Summer
3 Fall
4 Winter
Use an enumerator object:
for index, item in enumerate(mylist):
...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With