At My Fingertips

Documentation

Documentation

Function from library builtins

enumerate(sequence)

enumeratesequence

Given a sequence, produces a sequence of pairs of indices and elements (as tuples).

The first element has index 0, unless a different starting index is specified.

sequencesequence to enumerate

Sequence of pairs of indices and elements
Code
list(enumerate(['Lugano', 'Zürich', 'Lausanne']))
Result
[(0, 'Lugano'), (1, 'Zürich'), (2, 'Lausanne')]

See also enumerate 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)