The Word Counter program will read a file and analyse the word frequency of its contents. You have been given the Christmas Carol by Charles Dickens but any of the text books provided by the Gutenberg Project could be used.
Develop a program that reads in a file containing the Christmas Carol by Charles Dickens and outputs each word (once) without punctuation.
You need to consider how you will manage the words in particular how you manage full stops, commas and dashes etc. What about comparing don’t and do not? WHat about uppercase and lowercase versions of the same word.
Modify your program so it counts each unique word and can return a dictionary of words and their associated totals.
Modify your program so a user can enter a word and the computer will return either the number of times that word occurs or tells the user that the word does not exist.