Home
NOTE: I'm in the middle of upgrading the site. Most things are in place, but some things are missing and/or broken. This includes alt text for images. Please bear with me while I get things fixed.
Loop Through An Array In Python With An Index
items
=
[
"
a
"
,
"
b
"
,
"
c
"
,
"
d
"
,
"
e
"
]
for
index
,
item
in
enumerate
(
items
)
:
print
(
index
,
item
)
results start
~ fin ~