Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 answers
573 users
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'] '''