pares = {2,4,6,8,10}
impares = {1,3,5,7,9}
pares.add(12)
impares.add(11)
pares.remove(2)
impares.remove(1)
N_enteros=pares|impares
print(pares)
print(impares)
print(N_enteros)
To embed this project on your website, copy the following code and paste it into your website's HTML: