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.
sequencesequences 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 51af85f (Tue, 18 Nov 2025 10:59:34 GMT)