Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
str.split(sep=' ') solution in Clear category for Backward Each Word by David_Jones
def backward_string_by_word(text):
return ' '.join(word[::-1] for word in text.split(' '))
Feb. 27, 2020
Comments: