说明:给数据加上序号
>>> for id ,i in enumerate(range(10,20)): ... print(id,i)
给加上序号,从0开始的
>>> id = 10 >>> for i in range(10): ... print (id,i) ... id+=2