Head's Up: JavaScript is either turned off or not working properly in your browser. Some parts of this page may not work properly.
items = ["a", "b", "c", "d", "e"] for index, item in enumerate(items): print(index, item)
0 a 1 b 2 c 3 d 4 e