Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 answers
573 users
lst = ["python", "c", "c++", "c#", "java", "php", "nodejs", "ada"] three_letter_words = [word for word in lst if len(word) == 3] print(three_letter_words) ''' run: ['c++', 'php', 'ada'] '''