for loop on lists



examples/lists/for.py
things = ['apple', 'banana', 'peach', 42]
for var in things:
    print(var)

apple
banana
peach
42