Contact: aviboots(AT)netvision.net.il
37,088 questions
48,466 answers
573 users
words = ["python", "c", "c++", "java", "c#", "php", "nodejs", "javascript"] letter = "c" result = [w for w in words if w[0] == letter] print(result) ''' run: ['c', 'c++', 'c#'] '''