Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つのリストを実行するために必要です。
簡単にする方法はありますか?
for idx, (l1, l2) in enumerate(zip(list1, list2)):
私は質問の解決策を好みますが、他の選択肢は次のとおりです。
from itertools import count for i, x, y in zip(count(), seq1, seq2): pass