python集合的基本运算

python集合的基本运算,第1张

集合的基本运算——交并差
#集合交集(取重复)
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)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/870247.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存