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
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.