Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
¿Qué imprime el siguiente código?
A = {1, 2, 3, 0}B = {3, 1, 2, 4}resultado = A.union(B)print(resultado)
A = {1, 2, 3, 0}
B = {3, 1, 2, 4}
resultado = A.union(B)
print(resultado)
{0, 4}
{1, 2, 3, 0, 3, 2, 1, 4}
{1, 2, 3}
{1, 2, 3, 0, 4}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!