编写程序,输入两个集合 setA 和 setB,分别输出它们的交集、并集和差集 setA-setB
时间: 2023-06-08 15:05:25 浏览: 86
单片机学习资料 40个实验程序
好的,我能为您解答这个问题。以下是代码示例:
```python
setA = {1, 2, 3, 4}
setB = {3, 4, 5, 6}
# 计算交集
intersection = setA.intersection(setB)
print("交集:", intersection)
# 计算并集
union = setA.union(setB)
print("并集:", union)
# 计算差集
difference = setA.difference(setB)
print("差集:", difference)
```
运行结果为:
```
交集: {3, 4}
并集: {1, 2, 3, 4, 5, 6}
差集: {1, 2}
```
希望这可以帮助您。
阅读全文