union() method in Python set

Set Operations in Python

union using | operator

All Common elements in sets
Using vertical bar ( | ) operator
A={1,2,3}
B={3,4,5}
print(A|B)
Output ( Note 3 is used once only )
{1, 2, 3, 4, 5}
Using union() method
A={'a','b','c'}
B={'a','y','z'}
print(A.union(B))
Output
{'z', 'c', 'a', 'y', 'b'}

Using more than one sets

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

union() method

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