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 193 views
1 answer 192 views
1 answer 129 views
1 answer 139 views
1 answer 162 views
...