Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Backward Each Word by melitaele
def backward_string_by_word(text: str) -> str:
return ' '.join([i[::-1] for i in text.split(' ')])
April 20, 2021