Answers for "how to iterate through a list in python with a for loop getting 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 "how to iterate through a list in python with a for loop getting index"

Python Answers by Framework

Browse Popular Code Answers by Language