0
I have the following situation:
- I have a list of 64 items and I want the first two values to be displayed and all the other ones 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 wish the values to be displayed: [1,2,5,6,9,10,13,14,17,18,21,22]
I sincerely thank you for your help.
Anderson, thank you so much! It worked perfectly as expected.
– Danilo