Python | for loop quiz | Question 17

Last Updated :
Discuss
Comments

How can you iterate over the indices and values of a list using a for loop?

for i, value in enumerate(list):

for index, value in list:

for index in list.index():

for value in list.values():

Share your thoughts in the comments