how to reverse words words in string in python code example
Example: reverse each word in a string python
def reverse_word_sentence (sentence):
return ' '.join(word[::-1] for word in sentence.split(" "))
# Input: "Split Reverse Join"
# Output: "tilpS esreveR nioJ"