How to find words in a string which are greater than given length with Python

4 Answers

0 votes
s = "Python is a high level general purpose programming language"

length = 6

print([word for word in s.split() if len(word) > length])




'''
run:

['general', 'purpose', 'programming', 'language']

'''

 



answered Nov 28, 2023 by avibootz
0 votes
def strings_greater_than_length(s, length):
    result = []
 
    word_lst = s.split(" ")

    for word in word_lst:
        if len(word) > length:
            result.append(word)
 
    return result
    
s = "Python is a high level general purpose programming language"

length = 6

print(strings_greater_than_length(s, length))





'''
run:

['general', 'purpose', 'programming', 'language']

'''

 



answered Nov 28, 2023 by avibootz
0 votes
s = "Python is a high level general purpose programming language"

length = 6

words = s.split(" ")

lst = list(filter(lambda x: (len(x) > length), words))
 
print(lst)





'''
run:

['general', 'purpose', 'programming', 'language']

'''

 



answered Nov 28, 2023 by avibootz
0 votes
s = "Python is a high level general purpose programming language"

length = 6

words = s.split(" ")

lst = [w for i, w in enumerate(words) if len(w) > length]

print(lst)






'''
run:

['general', 'purpose', 'programming', 'language']

'''

 



answered Nov 28, 2023 by avibootz
...