# for loop # The for loop goes through items of a list. In the example below, we define a # list of animals. Then we loop through the animals items one by one, printing # out each of them on the screen animals = [u"monkey", u"pig", u"eagle", u"cow", u"horse"] for x in animals: print x # it prints: # monkey # pig # eagle # cow # horse