zip
(
sequence
)
Given multiple sequences, constructs a sequence of tuples with elements picked in order from the sequences.
Zipping stops when the shortest sequence is exhausted.
sequence
sequences to zip
list(zip(['Lugano', 'Zürich'], [70_000, 400_000]))
[('Lugano', 70000), ('Zürich', 400000)]
list(zip(range(100), 'ABC'))
[(0, 'A'), (1, 'B'), (2, 'C')]
See also zip in the official documentation
PyTamaro is a project created by the Lugano Computing Education Research Lab at the Software Institute of USI
Privacy Policy • Platform Version ede3c94 (Fri, 23 May 2025 14:43:18 GMT)