There is a direct function available to achieve this - symmetric_difference
Let's say, we have two sets A & B with values as-
A={1,2,3,4} & B={3,4,5,6} and C be the set containing values which are either in A or B but not both. The values in C can be computed as shown below-
Hope this helps.