gpt4 book ai didi

python - 如何在python中迭代数组时输出索引

转载 作者:IT老高 更新时间:2023-10-28 20:31:40 28 4
gpt4 key购买 nike

我在 python 中迭代一个数组:

for g in [ games[0:4] ]:
g.output()

我还可以在 for 循环中初始化和增加一个索引并将其传递给 g.output() 吗?

这样 g.output(2) 会导致:

Game 2 - ... stuff relating to the object `g` here.

最佳答案

像这样:

for index, g in enumerate(games[0:4]):
g.output(index)

关于python - 如何在python中迭代数组时输出索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2984566/

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