DEV Community

Discussion on: Intersection, union and difference of Sets in Python.

Collapse
 
rhymes profile image
rhymes

That's happening because of the bitwise operations are applied not to the values but to their presence in the set.

Thanks for reminding me about that. I still prefer the explicit version in "day to day" code though, especially because they can be used dynamically if needed!