pas la liste d'intersection Python

>>> set(a).symmetric_difference(b)
{2, 4, 6}
Uptight Unicorn