This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients phammer, r.david.murray, rhettinger, terry.reedy
Date 2011-04-23.01:31:45
SpamBayes Score 4.7630233e-12
Marked as misclassified No
Message-id <1303522307.14.0.324299016663.issue11889@psf.upfronthosting.co.za>
In-reply-to
Content
Note: 3.x correct gives the signature at enumerate(iterable, start) rather that enumerate(sequence, start).

I agree that the current entry is a bit awkward. Perhaps the doc would be clearer with a reference to zipping. Removing the unneeded definition of *iterable* (which should be linked to the definition in the glossary, along with *iterator*), my suggestion is:
'''
enumerate(iterable, start=0)
Return an enumerate object, an *iterator* of tuples, that zips together a sequence of counts and *iterable*. Each tuple contain a count and an item from *iterable*, in that order. The counts begin with *start*, which defaults to 0. enumerate() is useful for obtaining an indexed series: enumerate(seq) produces (0, seq[0]), (1, seq[1]), (2, seq[2]), .... For another example, which uses *start*:

>>> for i, season in enumerate(['Spring','Summer','Fall','Winter'], 1):
...     print(i, season)
1 Spring
2 Summer
3 Fall
4 Winter
'''
Note that I changed the example to use a start of 1 instead of 0, to produce a list in traditional form, which is one reason to have the parameter!
History
Date User Action Args
2011-04-23 01:31:47terry.reedysetrecipients: + terry.reedy, rhettinger, r.david.murray, phammer
2011-04-23 01:31:47terry.reedysetmessageid: <1303522307.14.0.324299016663.issue11889@psf.upfronthosting.co.za>
2011-04-23 01:31:46terry.reedylinkissue11889 messages
2011-04-23 01:31:45terry.reedycreate