Num_par= [2,4,6,8,10,12,14,16,18] 
Num_par.append(20)
print(Num_par)
a=int(input("Ingrese un número par"))
Num_par.append(a)
print(Num_par)
b=int(input("Elimine un número par"))
Num_par.remove(b)
print(Num_par)
Num_par.pop(6)
print(Num_par)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: