Comment faire éclater un numéro exact à partir d'une liste de Python

a = [0, 2, 3, 2]
a.remove(2)
print(a)
[0, 3, 2]
Vivacious Vole