difference_update() method in Python set

Update the main set with difference elements only ( after removing common elements ).

Using difference_update() method

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

Using more than one sets

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

difference_update() method

Using string ( iterable object ) with difference_update() method
A={'a','b','c','x','y'}
B='Alex'
A.difference_update(B)
print(A)
Output
{'c', 'y', 'a', 'b'}
Using list with difference_update() method.
A={'a','b','c'}
B=['a','x','y']
A.difference_update(B)
print(A)
Output
{'c', 'b'}
All set methods Questions with solutions on set
difference() union() 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