Question: python help please a. Create a file called YOUR_NAME_GetWords.py i. All the following functions must contain a description at the top of the function with

python help please
a. Create a file called "YOUR_NAME_GetWords.py" i. All the following functions must contain a description at the top of the function with a description of what the function does, input data type, and output data type (example below). ii. Functions can use regular expressions or other string functions. def get_most_common_end_letter(input_string): Get the most common end letter for the words in a string param: input_string: str returns: word_list: list[str] n"H iii. Write a function called "get_most_common_end_letter" 1. Input: String 2. Output: Returns the most common ending letter for the words in the string iv. Write a function called "get_words_ending_in_s" 1. Input: String 2. Output: A list of the words ending in " s " 3. HINT: Using regex the \b will be helpful. v. Write a function called "get_words_ending_in_ing" 1. Input String 2. Output: A list of the words ending in "ing" 3. HINT: Using regex the \b will be helpful. vi. Write a function called "get_words_with_ss" 1. Input: String 2. Output: A list of words that contain "ss
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
