At My Fingertips

Documentation

Documentation

Function from library builtins

zip(sequence)

zipsequence

Given multiple sequences, constructs a sequence of tuples with elements picked in order from the sequences.

Zipping stops when the shortest sequence is exhausted.

sequencesequences to zip

Sequence of tuples with the elements of the sequences
Code
list(zip(['Lugano', 'Zürich'], [70_000, 400_000]))
Result
[('Lugano', 70000), ('Zürich', 400000)]
Code
list(zip(range(100), 'ABC'))
Result
[(0, 'A'), (1, 'B'), (2, 'C')]

See also zip in the official documentation

Logo of PyTamaro

PyTamaro is a project created by the Lugano Computing Education Research Lab at the Software Institute of USI

Privacy PolicyPlatform Version 4153f55 (Wed, 02 Apr 2025 06:58:19 GMT)