DEV Community

Cover image for Ibuprofeno.py💊| #184: Explica este código Python
Cristian Fernando
Cristian Fernando

Posted on

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

Explica este código Python

Dificultad: Fácil

s = {1, 2, 3, 4, 1}
s.discard(0)
print(s)
Enter fullscreen mode Exit fullscreen mode
  • A. {1, 2, 3, 4}
  • B. {1, 2, 3, 4, 1}
  • C. {2, 3, 4}
  • D. Error

Respuesta:

👉 A. {1, 2, 3, 4}

Los sets son estructuras de datos no ordenadas que no permiten valores repetidos, entonces de entrada en nuestro set {1, 2, 3, 4, 1} eliminaríamos por defecto el valor 1.

A continuación aplicamos el método discard que elimina el valor que le pasemos por parámetro, en este caso intentamos eliminar el valor 0 que no existe en el set.

Top comments (0)

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay