Loop Through An Array In Python With An Index

python

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