# Example: write a program that prints # a list of animals list_of_animals = ["dog", "cat", "fish"] for animal in list_of_animals: print(animal) # Example: write a program that prints # each letter of a string "Python" for letter in "Python": print(letter)