Answers for "how do i tell python to loop through two different list at the same time"

22

looping through two lists python

for f, b in zip(foo, bar):
    print(f, b)
Posted by: Guest on March-30-2020

Code answers related to "how do i tell python to loop through two different list at the same time"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language