Question: python,plz Complete the reverse_first_last_letters() function that takes a single string parameter word. This function: Calls the get_first_last_letters() function defined previously, passing it the parameter word
Complete the reverse_first_last_letters() function that takes a single string parameter word. This function: Calls the get_first_last_letters() function defined previously, passing it the parameter word to obtain its first and last letters. Calls the get_middle_letters() function defined previously, passing it the parameter word to obtain its middle letters. Creates a new string consisting of the last letter from the parameter word, followed by its middle letters, and finally followed by its first letter. Use the information obtained from the previous two steps to do this. Prints the original word and the new word. Note that the reverse_first_last_letters() function must call the get_first_last_letters() and get_middle_letters() functions. Do not include your code for the get_first_last_letters() and get_middle_letters() functions - this has been done for you as part of the question setup. You can assume that the reverse_first_last_letters) function will always be passed a string of length at least 3. Some examples of the function being run are shown below: For example: Result word = "computer" Original word: computer New word: romputec reverse_first_last_letters(word) reverse_first_last_letters("keyboard") Original word: keyboard New word: deyboark Test Answer: (penalty regime: 0 %) Reset answer 1. det reverse_first_last_letters (word)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
