symmetric_difference() method in Python set

Returns a new set with all elements and without common elements. Original set remains unchanged.
  • Video Tutorial on Set


symmetric_difference using ^ operator

All elements except the Common elements in sets
Using caret ( ^ ) operator
A={1,2,3}
B={3,4,5}
print(A ^ B)
Output ( Note 3 is the only common element so all elements without 3 is returned.)
{1, 2, 4, 5}

Using type()

We can check the output by using type()
A={1,2,3}
B={3,4,5}
x=A ^ B 
print(type(x))
Output
<class 'set'>

Using symmetric_difference() method

A={'a','b','c'}
B={'a','y','z'}
print(A.symmetric_difference(B))
Output
{'b', 'y', 'z', 'c'}

Using more than one sets

We can use any number of sets with symmetric_difference()
A={'a','b','c'}
B={'a','y','z'}
C={'a','k','l'}
print(A ^ B ^ C)
Output
{'y', 'a', 'l', 'b', 'k', 'z', 'c'}

symmetric_difference() method

Using string ( iterable object ) with symmetric_difference() method
A={'a','b','c','x','y'}
B='Alex'
print(A.symmetric_difference(B))
Output
{'y', 'a', 'l', 'e', 'A', 'b', 'c'}
Using list with symmetric_difference() method.
A={'a','b','c'}
B=['a','x','y']
print(A.symmetric_difference(B))
Output
{'b', 'x', 'c', 'y'}
Below code will generate error.
print(A ^ B)
 TypeError: unsupported operand type(s) for ^: 'set' and 'list'

symmetric_difference_update()

In all above code by using symmetric_difference() we created a new set. By using symmetric_difference_update() method we can change the original set with common elements.
All set methods Questions with solutions on set
union() difference() intersection() symmetric_difference()
Subhendu Mohapatra — author at plus2net
Subhendu Mohapatra

Author

🎥 Join me live on YouTube

Passionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.



Subscribe to our YouTube Channel here



plus2net.com







Python Video Tutorials
Python SQLite Video Tutorials
Python MySQL Video Tutorials
Python Tkinter Video Tutorials
We use cookies to improve your browsing experience. . Learn more
HTML MySQL PHP JavaScript ASP Photoshop Articles Contact us
©2000-2025   plus2net.com   All rights reserved worldwide Privacy Policy Disclaimer