python for 循环获取index索引

By 刘志军 , 2020-06-07, 分类: qa

for

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资源

python之禅

猜你喜欢

2017-07-24
耐人寻味的 for...else...语句