Question: In python please (3) (20 points) Write a python program to count the frequency of repetition of each word found in the given text file
(3) (20 points) Write a python program to count the frequency of repetition of each word found in the given text file (journal.txt). Like the previous question, put this file in the c: temp directory for the program to read. Hint: use the .split() function to convert the file content to a list, use the for loop to create (.append(word) ) list of unique words, and use list.count(word) to count the frequency of occurrence. The program reports the frequency of repetition of each word found The number of unique words in the file The unique words list Results Frequency of : COMP : 5 Frequency of : 2150:5 Frequency of : Python : 10 Frequency of : OOP : 5 Frequency of : programming : 20 Frequency of : and : 5 Frequency of : Data : 5 Frequency of : Structures. : 5 Frequency of : is : 15 Frequency of : an : 15 Frequency of : object : 30 Frequency of : oriented : 15 Frequency of : language : 15 Frequency of : Java : 5 Frequency of : C:5 Frequency of : not: 5 There are 16 unique words in the file ['COMP', '2150', 'Python', 'OOP', 'programming', 'and', 'Data', 'Structures.', 'is', 'an', 'object', 'oriented', 'language', 'Java', 'C', 'not']
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
