Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - New builtin function enumerate(x), from PEP 279. Example: | Guido van Rossum | 2002-04-26 | 1 | -0/+139 |
enumerate("abc") is an iterator returning (0,"a"), (1,"b"), (2,"c"). The argument can be an arbitrary iterable object. |