Answers for "loop over the elements of an array in python and also get the index"

27

python3 iterate through indexes

items=['baseball','basketball','football']
for index, item in enumerate(items):
    print(index, item)
Posted by: Guest on May-07-2020

Code answers related to "loop over the elements of an array in python and also get the index"

Python Answers by Framework

Browse Popular Code Answers by Language