Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one line solution in Clear category for Backward Each Word by kim.yangjin
def backward_string_by_word(text: str) -> str:
return " ".join([text.split(' ')[i][::-1] for i in range(len(text.split(" ")))])
Aug. 7, 2020