gpt4 book ai didi

python - 在 python 中跟踪索引的正确方法是什么?

转载 作者:太空狗 更新时间:2023-10-29 17:52:05 26 4
gpt4 key购买 nike

现在我正在像这样在循环中跟踪我的索引

index = 0
for entry in longList:
if entry == 'foo':
print index
index += 1

有更好的方法吗?

最佳答案

for index, entry in enumerate(longList):
if entry == 'foo':
print index

关于python - 在 python 中跟踪索引的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7233575/

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