how to zip two iterations in python code example
Example 1: looping through two lists python
for f, b in zip(foo, bar):
print(f, b)
Example 2: python zip function
>>> numbers = [1, 2, 3]
>>> letters = ['a', 'b', 'c']
>>> zipped = zip(numbers, letters)
>>> zipped # Holds an iterator object
<zip object at 0x7fa4831153c8>
>>> type(zipped)
<class 'zip'>
>>> list(zipped)
[(1, 'a'), (2, 'b'), (3, 'c')] #list of tuples
# zip returns tuples