Answers for "get index while iterating list python"

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
0

get index of list item in loop

ints = [1,2,3,4,'5','6']

for idx, val in enumerate(ints):
    print(idx, val)
#Output
0 1
1 2
2 3
3 4
4 '5'
5 '6'
Posted by: Guest on May-03-2021

Code answers related to "get index while iterating list python"

Python Answers by Framework

Browse Popular Code Answers by Language