Python Function Reference

zip
Iterate over several iterables in parallel, producing tuples with an item from each one.
Python 3.13
zip(*iterables, strict=False)
*iterables
The iterables to zip.
strict
If True, raises ValueError if lengths differ.
Examples
Python 3.13
>>> list(zip(['a', 'b'], [1, 2]))
[('a', 1), ('b', 2)]