DEV Community

Cristian Fernando
Cristian Fernando

Posted on

2

Ibuprofeno.py💊| #147: Explica este código Python

Explica este código Python

Dificultad: Fácil

my_list = [1,2,3,4,5]
res = my_list[-3:-1]
print(res)
Enter fullscreen mode Exit fullscreen mode
  • A. [3, 4]
  • B. [2, 3]
  • C. [3, 4, 5]
  • D. [1, 2, 3, 4]

Respuesta:

👉 A. [3, 4]

Podemos hacer slicing de listas en Python usando índices negativos, los índices negativos empiezan a contar sobre la lista derecha a izquierda empezando por -1.

Entonces al decir my_list[-3:-1] tendremos [3, 4].

Top comments (0)

Eliminate Context Switching and Maximize Productivity

Pieces.app

Pieces Copilot is your personalized workflow assistant, working alongside your favorite apps. Ask questions about entire repositories, generate contextualized code, save and reuse useful snippets, and streamline your development process.

Learn more