Get your own Python server Result Size: 625 x 565
x
 
x = {"apple", "banana", "cherry", True}
y = {"google", 1, "apple", 2}
z = x.symmetric_difference(y)
print(z)
{2, 'google', 'cherry', 'banana'}