首页 > 代码库 > python 集合

python 集合

set集合

x=set(1,2,3,4,5)

y=set(3,4,6,7)

>>>x-y          -----set([1,2,5)]        #显示x里和y不同的数字

 

>>>x|y          ------set([1,2,3,4,5,6,7)]       #显示x,y里全部的,包括重复的

 

>>>x&y       -------set([3,4)]              #x,y集合里共有的数字

 

>>>x^y        --------set([1,2,5,6,7])               #x,y集合里有的,不包括重复的

 

python 集合