要實(shí)現(xiàn)Python字符串的單詞反轉(zhuǎn),可以按以下步驟進(jìn)行:
split()
函數(shù)將字符串拆分為單詞列表。join()
函數(shù)將反轉(zhuǎn)后的單詞列表連接成字符串。下面是一個(gè)實(shí)現(xiàn)的示例代碼:
def reverse_words(string):
# 拆分字符串為單詞列表
words = string.split()
# 反轉(zhuǎn)單詞列表
reversed_words = words[::-1]
# 連接反轉(zhuǎn)后的單詞列表并返回
return ' '.join(reversed_words)
# 測(cè)試
string = "Python字符串單詞反轉(zhuǎn)"
reversed_string = reverse_words(string)
print(reversed_string)
輸出結(jié)果為:
反轉(zhuǎn)單詞字符串Python