DEV Community

Cristian Fernando
Cristian Fernando

Posted on

3

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

Explica este código Python

Dificultad: Fácil

conjunto_vacio = {}
print(type(conjunto_vacio))
Enter fullscreen mode Exit fullscreen mode
  • A. <class 'tuple'>
  • B. <class 'dict'>
  • C. <class 'set'>
  • D. <class 'str'>

Respuesta:

👉 B. <class 'dict'>

No es posible crear conjuntos vacios usando a notación de {}, para lograr esto es necesario usar la palabra reservada set, así:

conjunto_vacio = set({})
print(type(conjunto_vacio)) # <class 'set'>
Enter fullscreen mode Exit fullscreen mode

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

👋 Kindness is contagious

DEV is better (more customized, reading settings like dark mode etc) when you're signed in!

Okay