Nuestro grupo de especialistas pasados varios días de trabajo y de recopilar de información, han obtenido la solución, deseamos que te sea de gran utilidad para tu proyecto.
Ejemplo 1: python slice an array
a[start:stop]# items start through stop-1
a[start:]# items start through the rest of the array
a[:stop]# items from the beginning through stop-1
a[:]# a copy of the whole array
Example:>>> a =[1,2,3,4,5,6,7,8]>>> a[1:4][2,3,4]
Ejemplo 2: es : y :: lo mismo en python slice
a[::-1]# all items in the array, reversed
a[1::-1]# the first two items, reversed
a[:-3:-1]# the last two items, reversed
a[-3::-1]# everything except the last two items, reversed
Te mostramos las comentarios y valoraciones de los lectores
Acuérdate de que te brindamos la opción de valorar este post si diste con la respuesta.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)