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

duxtech

Cristian Fernando

Posted on January 8, 2024

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

Explica este código Python

Dificultad: Básico

l = [1, 2]
l.insert(1,[1,2,3])
print(l)
Enter fullscreen mode Exit fullscreen mode
  • A. [1, 2, [1, 2, 3]]
  • B. [1, [1, 2, 3], 2]
  • C. [1, 2, 1, 2, 3]
  • D. [[1, 2, 3], 1, 2]

Respuesta en el primer comentario.

💖 💪 🙅 🚩
duxtech
Cristian Fernando

Posted on January 8, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related