4

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
  • 14,902
  • 11
  • 48
  • 82

2 Answers2

14

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
  • 41,002
  • 6
  • 73
  • 121
5

Use an enumerator object:

for index, item in enumerate(mylist):
  ...
bluepnume
  • 14,175
  • 8
  • 35
  • 46