# Week 11 homework, part 4
#
# This is a solution to Week 11, part 4 which allows the user to add
# new words to the dictionary.
#
# 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-part4.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("I don't know that word.")
        yn = input("Would you like to add it? y/n")
        if yn == "y":
            definition = input("Great! Type the definition: ")
            dictionary[user_text] = definition
        else:
            print("OK that's fine")        

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

print("Bye!")