3 Answers
+ 3
It goes through each element of the list (or any other iterable data structure) and on each pass it returns the current element's value to the iterator.
for x in [1,5,3,8,67,9]:
print(x)
will just print those numbers in the order they are in the list.
0
FOR each element IN this list -> return element
french?
0
No,ukranian