Cristian Fernando
Posted on January 12, 2024
Explica este c贸digo Python
Dificultad: Intermedio
s1 = {1, 2, 3}
s2 = {4, 2, 6}
s3 = {2, 5, 7}
print((s1 & s2) | s3) # 馃
- A.
{1, 2, 3, 4, 6}
- B.
{2}
- C.
{1, 2, 3, 4, 5, 6, 7}
- D.
{2, 5, 7}
Respuesta en el primer comentario.
馃挅 馃挭 馃檯 馃毄
Cristian Fernando
Posted on January 12, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.