How to find all 2 or 3 letters words from a list in Python

1 Answer

0 votes
lst = ["python", "c", "c++", "c#", "java", "php", "nodejs", "ada", "go"]
 
three_letter_words = [word for word in lst if len(word) == 2 or len(word) == 3]

print(three_letter_words)


'''
run:

['c++', 'c#', 'php', 'ada', 'go']

'''

 



answered Jun 21, 2024 by avibootz

Related questions

...