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():
This question is part of this quiz :