Set 2
Set 2
x = {1,2,5,15}
y = {10,15,20,25,30}
z = x.symmetric_difference(y)
print(z)
x.symmetric_difference_update(y)
print(x)
1(e) Give the output of following code? 2 5 1