intersection_update() method in Python set

Update the main set with common elements only.

Using intersection_update() method

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

Using more than one sets

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

intersection_update() method

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