[ad_1]
def reverseStr(s):
return ' '.join([x[::-1] for x in s.split(' ')])
6
[ad_2]
solved How do I reverse words in a string with Python
[ad_1]
def reverseStr(s):
return ' '.join([x[::-1] for x in s.split(' ')])
6
[ad_2]
solved How do I reverse words in a string with Python