w3resource logo


Python Exercises

Python: Find the list of words that are longer than n from a given list of words


Write a Python program to find the list of words that are longer than n from a given list of words.

Sample Solution :

Python Code :

def long_words(n, str):
    word_len = []
    txt = str.split(" ")
    for x in txt:
        if len(x) > n:
            word_len.append(x)
    return word_len	
print(long_words(3, "The quick brown fox jumps over the lazy dog"))

Console :

Copy and paste the above code and press "Enter key" to execute :

Post your code through Disqus