# Week 11 homework, part 3, version 2
#
# This is a better version of part 3 that we worked on which exits
# without printing "don't know".
#
# 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-part3b.py

user_text = input("Please type a word: ")
while user_text != "exit":

    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.")

    user_text = input("Please type a word: ")

print("Bye!")