Answer:
Check the explanation
Step-by-step explanation:
CODE
def total_word_count(words):
total = 0
#Loop through all words
for word in words:
#Find total
total = total + words[word]
return total
Kindly check the attached image below for the code output.