在Python中,可以使用内置的set类型来计算两个集合的交集、并集和差集。这里是一些例子:
# 定义两个集合
set1 = {1, 2, 3, 4, 5}
set2 = {4, 5, 6, 7, 8}
# 计算交集
intersection = set1.intersection(set2)
print("Intersection:", intersection) # 输出:{4, 5}
# 计算并集
union = set1.union(set2)
print("Union:", union) # 输出:{1, 2, 3, 4, 5, 6, 7, 8}
# 计算差集
difference = set1.difference(set2)
print("Difference:", difference) # 输出:{1, 2, 3}
你还可以使用其他方法,比如 &
运算符计算交集,|
运算符计算并集,-
运算符计算差集:
# 计算交集
intersection = set1 & set2
print("Intersection:", intersection) # 输出:{4, 5}
# 计算并集
union = set1 | set2
print("Union:", union) # 输出:{1, 2, 3, 4, 5, 6, 7, 8}
# 计算差集
difference = set1 - set2
print("Difference:", difference) # 输出:{1, 2, 3}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,请发送邮件至 55@qq.com 举报,一经查实,本站将立刻删除。转转请注明出处:https://www.szhjjp.com/n/1133508.html