7

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

Community
  • 1
  • 1
Vaibhav Bajpai
  • 16,374
  • 13
  • 54
  • 85

2 Answers2

16

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
Fredrik Pihl
  • 44,604
  • 7
  • 83
  • 130
6

Use an enumerator object:

for index, item in enumerate(mylist):
  ...
bluepnume
  • 16,460
  • 8
  • 38
  • 48