mirror of
https://github.com/boostorg/python.git
synced 2026-01-21 17:12:22 +00:00
8 lines
117 B
Python
8 lines
117 B
Python
from __future__ import generators
|
|
|
|
def enumerate(seq):
|
|
i = 0
|
|
for x in seq:
|
|
yield i, x
|
|
i += 1
|