📜  Python程序在字符串中打印偶数长度的单词

📅  最后修改于: 2022-05-13 01:54:28.318000             🧑  作者: Mango

Python程序在字符串中打印偶数长度的单词

给定一个字符串。任务是打印给定字符串中长度均匀的所有单词。

例子:

Input: s = "This is a python language"
Output: This
        is
        python
        language 

Input: s = "i am muskan"
Output: am
        muskan
        

方法:使用 split()函数拆分字符串。使用 for 循环迭代字符串的单词。使用 len()函数计算单词的长度。如果长度是偶数,则打印该单词。

以下是上述方法的Python实现:

# Python3 program to print 
#  even length words in a string 
  
def printWords(s):
      
    # split the string 
    s = s.split(' ') 
      
    # iterate in words of string 
    for word in s: 
          
        # if length is even 
        if len(word)%2==0:
            print(word) 
  
  
# Driver Code 
s = "i am muskan" 
printWords(s) 
输出:
am
muskan