If you want to delete every other element in a list in Python, you can do that fairly quickly.

Let us assume that we want to delete elements that are in positions 0, 2, 4, 6, meaning that we are starting from index 0 and we are adding 2 for every next element that we are deleting.

Continue reading