gpt4 book ai didi

python - 替代 'for i in xrange(len(x))'

转载 作者:太空狗 更新时间:2023-10-29 19:30:17 25 4
gpt4 key购买 nike

所以我在 another post 中看到以下“错误”片段,但我看到的唯一替代方案涉及修补 Python。

for i in xrange(len(something)):
workwith = something[i]
# do things with workwith...

我该怎么做才能避免这种“反模式”?

最佳答案

如果需要知道循环体中的索引:

for index, workwith in enumerate(something):
print "element", index, "is", workwith

关于python - 替代 'for i in xrange(len(x))',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/578677/

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