programming-examples/python/Sets/Python program to create set difference.py
2019-11-15 12:59:38 +01:00

7 lines
160 B
Python

setx = set(["apple", "mango"])
sety = set(["mango", "orange"])
setz = setx & sety
print(setz)
#Set difference
setb = setx - setz
print(setb)