Contact: aviboots(AT)netvision.net.il
41,692 questions
54,362 answers
573 users
lst = [1, 2, 3, 5, 8, 6, 7, 4] l = lst[1::2] print(l) ''' run: [2, 5, 6, 4] '''