gpt4 book ai didi

python - 在 Python 中组合枚举 + itertools.izip

转载 作者:太空宇宙 更新时间:2023-11-03 12:12:26 24 4
gpt4 key购买 nike

我想在 Python 中迭代 + 枚举两个列表。下面的代码看起来很难看。有没有更好的解决方案?

for id, elements in enumerate(itertools.izip(as, bs)):
a = elements[0]
b = elements[1]
# do something with id, a and b

谢谢。

最佳答案

您可以在 for 循环中分配 a 和 b:

for id, (a, b) in enumerate(itertools.izip(as, bs)):
# do something with id, a and b

关于python - 在 Python 中组合枚举 + itertools.izip,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7107323/

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