You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-basics-2022/09_python/enum.py

10 lines
125 B

els = ["a", "b", "c"]
def _enum(els):
return zip(range(len(els)), els)
for idx, el in _enum(els):
print(idx, el)