- New builtin function enumerate(x), from PEP 279. Example:
enumerate("abc") is an iterator returning (0,"a"), (1,"b"), (2,"c"). The argument can be an arbitrary iterable object.
Showing
Include/enumobject.h
0 → 100644
Lib/test/test_enumerate.py
0 → 100644
Objects/enumobject.c
0 → 100644
Please register or sign in to comment