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

猜你喜欢

转载自www.cnblogs.com/sea-stream/p/9967890.html
今日推荐