Python iterate over two lists simultaneously [dupl

2019-03-17 19:00发布

This question already has an answer here:

Is there a way in python to forloop over two or more lists simultaneously?

Something like

a = [1,2,3]
b = [4,5,6]
for x,y in a,b:
    print x,y

to output

1 4
2 5
3 6

I know that I can do it with tuples like

l = [(1,4), (2,5), (3,6)]
for x,y in l:
    print x,y

1条回答
狗以群分
2楼-- · 2019-03-17 19:28

You can use the zip() function to pair up lists:

for x, y in zip(a, b):

Demo:

>>> a = [1,2,3]
>>> b = [4,5,6]
>>> for x, y in zip(a, b):
...     print x, y
... 
1 4
2 5
3 6
查看更多
登录 后发表回答