gpt4 book ai didi

python - 在 Python 中使用索引迭代列表

转载 作者:IT老高 更新时间:2023-10-28 12:18:37 28 4
gpt4 key购买 nike

我可以发誓我已经看到了接受列表的函数(或方法),例如 [3, 7, 19] 并将其放入可迭代的元组列表中,如下所示:[(0,3), (1,7), (2,19)] 来代替:

for i in range(len(name_of_list)):
name_of_list[i] = something

但我不记得名字了,谷歌搜索“迭代列表”一无所获。

最佳答案

>>> a = [3,4,5,6]
>>> for i, val in enumerate(a):
... print i, val
...
0 3
1 4
2 5
3 6
>>>

关于python - 在 Python 中使用索引迭代列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/126524/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com