A={1,2,3}
B={3,4,5}
print(A - B)
Output
{1,2}
A={1,2,3}
B={3,4,5}
x=A - B
print(type(x))
Output
<class 'set'>
A={'a','b','c'}
B={'a','y','z'}
print(A.difference(B))
Output
{'c', 'b'}
A={'a','b','c'}
B={'a','y','z'}
C={'a','b','l'}
print(A - B - C)
Output
{'c'}
A={'a','b','c','x','y'}
B='Alex'
print(A.difference(B))
Output
{'a', 'c', 'y', 'b'}
A={'a','b','c'}
B=['a','x','y']
print(A.difference(B))
Output
{'c', 'b'}
Below code will generate error.
print(A - B)
TypeError: unsupported operand type(s) for -: 'set' and 'list'
Author
🎥 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.