Compilador de Python Online (Editor / Interpretador)
Escreva, execute e compartilhe o seu código Python instantaneamente com o Compilador de Python Online da Asimov Academy.
A = {1, 2, 3, 4}
B = {3, 4, 5, 6, 7}
print(A.symmetric_difference(B))
# Saída: {1, 2, 5, 6, 7}