I have the following lists in python
lista_x = [2,3,4,5]
lista_y = [6,7,8,9]
I try to replicate the current element (excluding the extremes) to the next position. So get something similar to this:
lista_x = [2,3,3,4,4,5]
lista_y = [6,7,7,...
asked by
26.09.2016 / 00:48