Iterating over two (or more) sequences in parallel
>>> for a, b in zip([1, 2], [3, 4]): print(a, b) 1 3 2 4