返回列表中超过一定数量字符的元素

时间:2018-11-18 23:22:38

标签: python string list

我希望能够从列表中获得超过3个三个字母的单词。我正在努力做到这一点。

words = "My name is bleh, I am bleh, how are you bleh?"

我希望能够提取超过3个字母的所有内容。

1 个答案:

答案 0 :(得分:0)

尝试一下:

result = []    
for word in words.split(' '):
    if len(word) >= 3:
        result.append(word)

使用split时,会得到一个包含变量'words'的每个单词的列表。然后,您对其进行迭代并使用len()计算长度。