Split a list into half by even and odd indexes? [duplicate]
问题 This question already has answers here : How to split an iterable into two lists with alternating elements (4 answers) Closed last month . Possible Duplicate: Python program to split a list into two lists with alternating elements I have a list like this: list1 = [blah, 3, haha, 2, pointer, 1, poop, fire] The output I want is: list = [3, 2, 1, fire] So what I want is to make a list of even elements of the former list. I tried using a for statement and tried to delete 2nth element while