Make `set.symmetric_difference()` take any number of arguments

For example, a.symmetric_difference(b, c) would be equivalent to a ^ b ^ c. Given that symmetric difference is commutative, the order does not matter.

1 Like