# Week 11 homework, part 3, version 1
#
# This was the first version of part 3 that we worked on which prints
# "don't know" on exit.
#
# This is Python code that would go in a .py file that you would edit
# in Atom and run on the command line with the following command:
#
# $ python3 week11-hw-review-part3a.py

dictionary = {}

dictionary["apple"] = "a red or green fruit"
dictionary["banana"] = "a yellow or brown fruit"
dictionary["carrot"] = "an orange vegetable"
  
user_text = ""
while user_text != "exit":
    user_text = input("Please type a word: ")

    if user_text in dictionary:
        print("The definition of that word is:")
        print("  " + dictionary[user_text])
    else:
        print("hm, I don't know that word.")