I have the following situation:
- I have a list of 64 items and I want the first two values to appear and all the others after 2.
An example would be:
lista = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22]
I want the values to be displayed: [1,2,5,6,9,10,13,14,17,18,21,22]
I thank you sincerely for the help of those who can.