Question: Functions must be done in Python PLEASE!!! Here, we will flex our string operations. The task is to create functions for the following: - A
Functions must be done in Python PLEASE!!!

Here, we will flex our string operations. The task is to create functions for the following: - A function that will take in the text string and return a string that replaces the titular character's name with an input parameter name you provide - A function that will take in the text string and return a string that replaces all commas and periods with spaces (or nothing). - A function that will take in the text string and return a list of all words separated by spaces (don't worry about remaining punctuation) - This function should also print the number of words in the text - A function that will take in a list of words and return a set of unique words from the list - This function should also print the number of unique words in the list - A function that will take in the text string and count the number of times each vowel appears in the text. - Example: "This is my crazy output message" - a: 2 e: 2 i: 2 o: 1 u: 2 y: 2 - A function that will take in the text string and set of unique words, as well as input parameters min and max. The function will print the words along with the number of occurrences of the words that appear in the list if the words appear between min and max number of times in the text. - A function (similar to above) that will print the words only used once in the text - A function (similar to above) that will print the word that appears most in the text, along with the number of occurrences
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
