Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Backward Each Word by MM75CO
def backward_string_by_word(text: str) -> str:
return ' '.join (x[::-1] for x in text.split(' '))
May 16, 2020