How to loop through two lists in parallel with Python

1 Answer

0 votes
list1 = [1, 2, 3, 4, 5, 10, 20]
list2 = [7, 8, 9, 0, 6]

for a, b in zip(list1, list2):
    print(a, b)






'''
run:

1 7
2 8
3 9
4 0
5 6

'''

 



answered Apr 20, 2021 by avibootz

Related questions

1 answer 180 views
1 answer 177 views
1 answer 119 views
1 answer 132 views
1 answer 152 views
...