Python_3_Examples_and_Notes/030_set.py

17 lines
213 B
Python
Raw Permalink Normal View History

#!/usr/bin/python3
setA = set([1,2,3,3,2])
setB = set([3,4,5])
setA|setB # Union
setA&setB # Intersection
setA-setB # In set A, but not set B
setB-setA # In set B, but not set A
var = setA&setB
print(var)