Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
lst_tpl = [(1, 2, 3), (4, 5, 6, 7), (8, 9)] result = [tpl[0] for tpl in lst_tpl] print(result) ''' run: [1, 4, 8] '''