DEV Community

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

Posted on

1

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

Explica este código Python

Dificultad: Fácil

x = {1,2,3}
y = {3,4,5}

print(x.intersection(y))
Enter fullscreen mode Exit fullscreen mode
  • A. {1, 2, 4, 5}
  • B. {3}
  • C. {1, 2, 3, 4, 5}
  • D. Ninguna de las anteriores

Respuesta:

👉 B. {3}

La intersección entre conjuntos consiste en tomar solo los items que estén presentes en ambos conjuntos, en este caso el único valor que cumple con eso es el 3.

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more