Python程序可以反转句子中的每个单词?
在这里,我们使用python内置函数。首先,我们将句子分成单词列表。然后反转每个单词并创建一个新列表,这里我们使用python列表理解技术,最后加入新单词列表并创建一个新句子。
示例
Input :: PYTHON PROGRAM Output :: NOHTYP MARGORP
算法
Step 1 : input a sentence. And store this in a variable s. Step 2 : Then splitting the sentence into a list of words. w=s.split(“”) Step 3 : Reversing each word and creating a new list of words nw. Step 4 : Joining the new list of words and make a new sentence ns.
范例程式码
# Reverse each word of a Sentence
# Function to Reverse words
def reverseword(s):
w = s.split(" ") # Splitting the Sentence into list of words.
# reversing each word and creating a new list of words
# apply List Comprehension Technique
nw = [i[::-1] for i in w]
# Join the new list of words to for a new Sentence
ns = " ".join(nw)
return ns
# Driver's Code
s = input("ENTER A SENTENCE PROPERLY ::")
print(reverseword(s))输出结果
ENTER A SENTENCE PROPERLY :: PYTHON PROGRAM NOHTYP MARGORP
热门推荐
10 小红书平安祝福语简短
11 生日祝福语大全女孩简短
12 收生日红包祝福语 简短
13 领证幽默祝福语简短
14 法考面试祝福语简短
15 老哥出门祝福语简短语
16 送灯祝福语简短独特
17 幼儿狗年祝福语大全简短
18 好听的元旦简短祝福语