find position of item in for loop over a sequence
 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  
看看枚举
>>> for i, season in enumerate('Spring Summer Fall Winter'.split(), start=1):
        print i, season
1 Spring
2 Summer
3 Fall
4 Winter
使用枚举器对象:
for index, item in enumerate(mylist):
  ...
                        链接地址: http://www.djcxy.com/p/24010.html
                        上一篇: 相当于Ruby的Python
下一篇: 找到项目的位置在for循环一个序列
