Good, as an example in a list with a cycle for example. And the for variable will return the index of the list in that iteration instead of the element. An example here goes.
array_1=["1","2","3"]
for i in array_1:
print(i)
I know that in that case my print function will devour the element in which you are iterating the for what would be a string. But how would you get me to return the index of that element. Thanks