Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one-liner solution in Clear category for Backward Each Word by Oksana_Antropova
def backward_string_by_word(text: str) -> str:
return ' '.join(''.join(reversed(word)) for word in text.split(' '))
Oct. 13, 2020