]> granicus.if.org Git - python/commitdiff
Issue 11889: Clarify docs for enumerate.
authorRaymond Hettinger <python@rcn.com>
Sat, 25 Jun 2011 13:00:14 +0000 (15:00 +0200)
committerRaymond Hettinger <python@rcn.com>
Sat, 25 Jun 2011 13:00:14 +0000 (15:00 +0200)
Doc/library/functions.rst

index 1c1c167a9828d77ad168b15f2e98d502f8238c9e..b766a2e35e904f3b2fab57d7c7df338ee543a1a4 100644 (file)
@@ -331,14 +331,13 @@ are always available.  They are listed here in alphabetical order.
    :term:`iterator`, or some other object which supports iteration.  The
    :meth:`__next__` method of the iterator returned by :func:`enumerate` returns a
    tuple containing a count (from *start* which defaults to 0) and the
-   corresponding value obtained from iterating over *iterable*.
-
-      >>> for i, season in enumerate('Spring Summer Fall Winter'.split(), start=1):
-              print(i, season)
-      1 Spring
-      2 Summer
-      3 Fall
-      4 Winter
+   values obtained from iterating over *iterable*.
+
+      >>> seasons = ['Spring', 'Summer', 'Fall', 'Winter']
+      >>> list(enumerate(seasons))
+      [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')]
+      >>> list(enumerate(seasons, start=1))
+      [(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')]
 
    Equivalent to::