Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
def ReverseEachWordInAString(s): words = s.split(" ") reversedWordsList = [word[::-1] for word in words] s = " ".join(reversedWordsList) return s s = "java c++ rust python c#" print(ReverseEachWordInAString(s)) ''' run: avaj ++c tsur nohtyp #c '''