Answers for "python enumerate items in list"

2

python enumerate list

>>> for count, value in enumerate(values):
...     print(count, value)
...
0 a
1 b
2 c
Posted by: Guest on April-21-2021
0

enumerate items python

mydict = {1: 'a', 2: 'b'}
for i, (k, v) in enumerate(mydict.items()):
    print("index: {}, key: {}, value: {}".format(i, k, v))

# which will print:
# -----------------
# index: 0, key: 1, value: a
# index: 1, key: 2, value: b
Posted by: Guest on January-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language