Your question is Reverse Words in Sentence. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Write a program to reverse only the individual words in a given sentence while maintaining their original order.
Implement the function below. Words are separated by one or more whitespace characters, and the returned sentence should use single spaces between words. Preserve punctuation as part of each word.
Input: a string sentence. Output: a string containing the words in their original order, with each word's characters reversed.
def reverse_words(sentence):