集合的基本运算——交并差
#集合交集(取重复)
jihe={'11','12''46','89','35'}
jihe1={'12','38','89','97','11'} #intersection()这个函数取相同值
tiaoyong=jihe.intersection(jihe1)
print(tiaoyong)
#集合并集(取不重复)
jihe={'11','12''46','89','35'}
jihe1={'12','38','89','97','11'}
tiaoyong=jihe.union(jihe1) #union()取不相同的
print(tiaoyong)
#集合差集
#除去两者相同的部分,被减数剩下的部分
jihe={'11','12''46','89','35'}
jihe1={'12','38','89','97','11'}
tiaoyong=jihe.difference(jihe1)
print(tiaoyong)
#对称差集(除去两者相同部分,保留不同部分)取最大值和最小值
jihe={'11','12''46','89','35'}
jihe1={'12','38','89','97','11'}
tiaoyong=jihe.symmetric_difference(jihe1)
print(tiaoyong)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)