要实现Python字符串的单词反转,可以按以下步骤进行:
split()
函数将字符串拆分为单词列表。join()
函数将反转后的单词列表连接成字符串。下面是一个实现的示例代码:
def reverse_words(string):
# 拆分字符串为单词列表
words = string.split()
# 反转单词列表
reversed_words = words[::-1]
# 连接反转后的单词列表并返回
return ' '.join(reversed_words)
# 测试
string = "Python字符串单词反转"
reversed_string = reverse_words(string)
print(reversed_string)
输出结果为:
反转单词字符串Python