Question: Write a python program with the following specifications: A) Create a function counts that takes any list of words and return a dictionary that has
Write a python program with the following specifications: A) Create a function counts that takes any list of words and return a dictionary that has the unique words as keys and their counts as values. (see example below) B) Create a function most_frequent that takes a dictionary of words counts, and then returns the most frequent word and its frequency.(see example below) You may test your code with the following example: words=t'python.Rcpp!, CPP', 'cpp) count_dictionary-counts (words) max_item, freqemost frequent (count_dictionary print (count_dictionary) Most Erequent 13 with counts=1". Format (max tem, freg) Here is an illustration examples: words=['python', 'R', 'r' cpp, CPP, cPp']
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
