Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
slice solution in Clear category for Backward Each Word by Adrian_Sanz_Wallace
def backward_string_by_word(text: str) -> str:
return ' '.join(w[::-1] for w in text.split(' '))
March 13, 2021