Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,974 questions

51,918 answers

573 users

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
...