Question: python language Function Name: longest Word Parameters: sentence ( str ) Returns: a string ( str) Description: After texting your friend, you invite them over
python language

Function Name: longest Word Parameters: sentence ( str ) Returns: a string ( str) Description: After texting your friend, you invite them over for a game of Scrabble. You don't really know the rules, so you try to find the longest word you can make. Write a function that takes in a sentence and returns the longest word in it. All words will be surrounded by one space on each side. If multiple words have the same longest length, return the one that ap- pears last in the sentence. You may not use .split() or any similar methods. >>> sentence = " run that back turbo " >>> print(longestWord(sentence)) turbo >>> sentence = " jetson made anotha one " >>> print(longestWord(sentence)) anotha
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
