1. 程式人生 > >python 獲取列表大於指定長度的元素

python 獲取列表大於指定長度的元素

 

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"))