Question: ( 3 points ) Lab: 6 - 1 b Write a function called word _ counter. Instructions Write a python program to perform following task
points Lab: b Write a function called wordcounter.
Instructions
Write a python program to perform following task and save it as python file that has firstname, followed by lastname and lab number. If your name is John Doe, then the program filename should be "JohnDoebpy file
Given a word, write a function that will output a dictionary that will give each character of the word and its frequency.
Due to its keyvalue pair format, dictionaries can be used to present some forms of structured data in an easily readable way. This challenge will help you write code to present frequency data for characters in strings.
Dictionaries are very good data structures for organizing data in a readable format. Your aim is to write a function called wordcounter, which will take in a line of text and output a dictionary with each letter as a key, the value being the frequency of appearance of the letter.
Here are some hints to help you out:
Treat different uppercase and lowercase letters separately. For example, and should have different counts.
Drop empty spaces.
Assume that sentences will not have any special characters.
Steps for completion:
Define the function and have it take a string argument.
Iterate through the string and count the occurrences of each character.
Output each character as a key in the output dictionary, with the frequency as the value.
At the end of your script, call the function as shown in code below, pass it the string "Mississippi" and print it to the console. Here is an example:
printwordcounterMississippi
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
