Contact: aviboots(AT)netvision.net.il
40,761 questions
53,136 answers
573 users
lst = ["python", "java", "c++"] chars = [word[0] for word in lst] print(chars) ''' run: ['p', 'j', 'c'] '''