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'}
A={'a','b','c'}
B={'a','y','z'}
C={'a','k','l'}
print(A | B |C)
Output
{'z', 'l', 'k', 'c', 'a', 'y', 'b'}
A={'a','b','c','x','y'}
B='Alex'
print(A.union(B))
Output
{'l', 'e', 'A', 'a', 'c', 'x', 'y', 'b'}
A={'a','b','c'}
B=['a','x','y']
print(A.union(B))
Output
{'c', 'x', 'y', 'a', 'b'}
Below code will generate error.
print(A | B)
TypeError: unsupported operand type(s) for |: 'set' and 'list'
All set methods Questions with solutions on setAuthor
🎥 Join me live on YouTubePassionate 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.