Blog Owner: Bala Krishna Emmadi
Ph no. 8247536369Email: balagmastro15@gmail.com
def reverseWords(s: str) -> str: words = s.split() return ' '.join(word[::-1] for word in words)