python for 循环中获取 index 索引的方式有2种
1、自定义索引
index = 0
for c in "thezenofpython":
print(index, c)
index += 1
>>>
0 t
1 h
2 e
3 z
4 e
5 n
...
2、 使用 enumerate 函数
for index, c in enumerate("thezenofpython"):
print(index, c)
>>>
0 t
1 h
2 e
3 z
4 e
5 n
...
关注公众号「Python之禅」,回复「1024」免费获取Python资源