You can download this code by clicking the button below.
This code is now available for download.
Combines elements from multiple iterables into a single iterable of tuples. Returns an iterator that aggregates elements from each of the iterables.
Technology Stack : Built-in function
Code Type : Function
Code Difficulty : Intermediate
def zip(*iterables):
"""Zip the given iterables together into a single iterable of tuples.
Args:
*iterables: An arbitrary number of iterables.
Returns:
An iterator that aggregates elements from each of the iterables.
Example:
>>> list(zip([1, 2], ['a', 'b'], [True, False]))
[(1, 'a', True), (2, 'b', False)]
"""
return zip(*iterables)