Question: Can someone help with this? It has to be written in Python Write a function with the following signature: sente (sentence) This function should take
Can someone help with this? It has to be written in Python

Write a function with the following signature: sente (sentence) This function should take a string as an argument, and return a new string in which the order of the individual words has been reversed. Don't worry about separating and preserving punctuation; it's ok to treat it as if it was part of the word preceding it. Hints There are at least two reasonable ways to solve this problem: 1) You could iterate forward through the existing words, and prepend each subsequent word to the beginning of a new string, or 2) You could iterate backward through the existing words and append each subsequent word to the end of a new string. Iterating backward can be accomplished either by passing a negative third argument (the step) to the range function or by using negative list indexing where -1 refers to the last element in the list, -2 to the second-to-last, etc.). Test your new function from main
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
