A for loop can iterate over a list. Each round, the loop variable holds the next item.
for fruit in ["a","b"]: runs twice — fruit is "a" then "b".