Ibuprofeno.py💊| #17: Explica este código Python
Cristian Fernando
Posted on January 8, 2024
Explica este código Python
Dificultad: Básico
l = [1, 2]
l.insert(1,[1,2,3])
print(l)
- 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.
💖 💪 🙅 🚩
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
webdev Understanding HTTP, Cookies, Email Protocols, and DNS: A Guide to Key Internet Technologies
November 30, 2024