在Python中,可以使用split()函数将字符串拆分为单词列表,然后使用join()函数将单词列表重新组合为反转后的字符串。具体步骤如下:
以下是示例代码:
def reverse_words(string):
words = string.split()
reversed_words = [word[::-1] for word in words]
reversed_string = ' '.join(reversed_words)
return reversed_string
# 测试
string = "How to reverse each word in a string to save space?"
reversed_string = reverse_words(string)
print(reversed_string)
输出结果为:"woH ot esrever hcae drow ni a gnirts ot evas ecaps?"
领取专属 10元无门槛券
手把手带您无忧上云