There was an error while loading. Please reload this page.
These operations should be implemented
>>> a = {1, 2, 3} >>> b = {2, 3, 4, 5} >>> a | b {1, 2, 3, 4, 5} >>> a & b {2, 3} >>> a - b {1} >>> a ^ b {1, 4, 5} >>>
These operations should be implemented