Question
Python Part 1: Unique Words Write a program that opens a user specified text file and then displays a list of all the unique words
Python
Part 1: Unique Words Write a program that opens a user specified text file and then displays a list of all the unique words found in the file. At the end include a count of how many unique words were found. Remove punctuation. Use the attached ShortText.txt file to debug your program, then use GettysburgAddress.txt for the final test (there are 138 unique words in the file). Hint: Create a dictionary using the words in the file as keys. Before adding a new key, use 'in' to determine if it is already in the dictionary.
Part 2: Modify the program to count and print the frequency of each word. Also print which word appears most often.Hint: Use the value of each dictionary item to count the number of times each word appears.
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