Ibuprofeno.py馃拪| #22: Explica este c贸digo Python

duxtech

Cristian Fernando

Posted on January 13, 2024

Ibuprofeno.py馃拪| #22: Explica este c贸digo Python

Explica este c贸digo Python

Dificultad: Intermedio

## Reto #22

persona = {
  "nombre": "Cris",
  "apellido": "Villca",
  "edad": 27,
  "soltero": False,
  "direccion": {
    "calle": 17,
    "avenida": "Tomas Monje",
    "pasaje": "A"
  }
}

print(persona.get("direccion").get("avenida").upper())
Enter fullscreen mode Exit fullscreen mode
  • A. None
  • B. TOMAS MONJE
  • C. tomas monje
  • D. ToMaS mOnJe

Respuesta en el primer comentario.

馃挅 馃挭 馃檯 馃毄
duxtech
Cristian Fernando

Posted on January 13, 2024

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

Sign up to receive the latest update from our blog.

Related