Open the .txt file and read it line by line. For each line, split it into a list of words using the split function. (this should remove all punctuation.) For each word, pull out any numbers in it. Example: word is "Bobby" – no numbers, word remains "Bobby" Example: word is "B0bby" – one number, 0, word is now "Bbby" Example: word is "B1LL" – one number, 1, word is now "BLL" Change all the words to lower case. For each word, check to see if the word is already in our list. If the word is not in the list, add it to the list. When the program completes, print the following output: sort and print the words in alphabetical order with a word count add up all the numbers and tell us the lucky number If the input file is "Bobby B0bby B1LL BLL Bill", the output would be bbby - 1 bill - 1 bll - 2 bobby - 1 Lucky number bot: sum is 1 (this we got by 0 + 1)