Answered step by step
Verified Expert Solution
Question
1 Approved Answer
( Counting Duplicate Words - 1 0 points ) Write a script that uses a dictionary to determine and print the number of duplicate words
Counting Duplicate Words points Write a script that uses a dictionary to determine and print the number of duplicate words in a sentence. Treat uppercase and lowercase letters the same and assume there is no punctuation in the sentence. Use the techniques you learned in Section Words with counts larger than have duplicates
Character Counts points Recall that strings are sequences of characters. Use techniques similar to Fig. to write a script that inputs a sentence from the user, then uses a dictionary to summarize the number of occurrences of each letter. Ignore case, ignore blanks and assume the user does not enter any punctuation. Display a twocolumn table of the letters and their counts with the letters in sorted order.
Bonus points: Use a set operation to determine which letters of the alphabet were not in the original string
Deliverables:
Your source code file ipynb or py
A screenshot of your source code along with the output result
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started