# pets.py
# Lab 5: Write your for loops under the assignment statement below.

# This is *one* list made up of five lists.
pets = [["Shoji", "cat", 18], ["Hanako", "dog", 15], ["Sir Toby", "cat", 10],
        ["Sachiko", "cat", 7], ["Sasha", "dog", 3], ["Lopez", "dog", 13]]

# Use list pets to complete the for loops described in the lab handout.

# Write your for loops below.

