Message229979
| Author |
vy0123 |
| Recipients |
docs@python, vy0123 |
| Date |
2014年10月25日.03:43:55 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1414208636.74.0.462392063973.issue22725@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
The existing documentation is confusing.
— improve wording as follows
enumerate(sequence, start=0)
Returns pairings of index into sequence[link to glossary.html#term-sequence] with the object at that index in the sequence.
— wording as found in v.2.7.5
enumerate(sequence, start=0)
Return an enumerate object. sequence must be a sequence, an iterator, or some other object which supports iteration. The next() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over sequence: |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2014年10月25日 03:43:56 | vy0123 | set | recipients:
+ vy0123, docs@python |
| 2014年10月25日 03:43:56 | vy0123 | set | messageid: <1414208636.74.0.462392063973.issue22725@psf.upfronthosting.co.za> |
| 2014年10月25日 03:43:56 | vy0123 | link | issue22725 messages |
| 2014年10月25日 03:43:55 | vy0123 | create |
|