Instruction
Great! We've created a function that takes a word and returns its value.
Exercise
Let's go one step further and create a function called create_word_value_dict() that accepts a list of words, called word_list, and a dictionary with points for letters, letter_values, and returns a dictionary with each word as a key and the sum of points for that particular word as a value.
You can use the previously created function as a helper function.



