# Pets database

petDict = {}
petDict["dog"] = "Rover"
petDict["cat"] = "Lucy"
petDict["ferret"] = "Ferdinand"
petDict["monkey"] = "Curious George"

animal = None
while animal != "":
    animal = raw_input("Choose an animal: ")
    if animal != "":
        if animal in petDict:
            name = petDict[animal]
            print "My",animal,"is named",name
        else:
            print "I do not have a",animal
