A={'a','b','c'}
B={'a','y','z'}
A.symmetric_difference_update(B)
print(A)
Output
{'y', 'b', 'c', 'z'}
A={'a','b','c','x','y'}
B='Alex'
A.symmetric_difference_update(B)
print(A)
Output
{'y', 'l', 'A', 'e', 'b', 'a', 'c'}
Using list with symmetric_difference_update() method.
A={'a','b','c'}
B=['a','x','y']
A.symmetric_difference_update(B)
print(A)
Output
{'y', 'x', 'b', 'c'}
All set methods Questions with solutions on set Author & Instructor at plus2net
I write and maintain practical tutorials on Python, PHP, SQL, JavaScript, HTML, jQuery, and web development at plus2net. The tutorials focus on clear explanations, working examples, and code that readers can test and adapt while learning.