编写程序,输入两个集合 seta 和 setb,分别输出它们的交集、并集和差集 seta-setb
时间: 2023-04-24 11:00:34 浏览: 285
这是一个用 Python 实现的程序示例:
```python
seta = set([1, 2, 3])
setb = set([2, 3, 4])
# 交集
print(seta.intersection(setb))
# 并集
print(seta.union(setb))
# 差集 seta-setb
print(seta.difference(setb))
```
输出:
```
{2, 3}
{1, 2, 3, 4}
{1}
```
相关问题
编写程序,输入两个集合 setA 和setB,分别输出它们的交集、并集和差集setA-setB
好的,以下是程序的代码:
```
setA = set(input("请输入集合A,元素之间用空格隔开:").split())
setB = set(input("请输入集合B,元素之间用空格隔开:").split())
intersection = setA.intersection(setB)
union = setA.union(setB)
difference = setA.difference(setB)
print("集合A和集合B的交集为:", intersection)
print("集合A和集合B的并集为:", union)
print("集合A和集合B的差集为:", difference)
```
希望这个程序能够帮到你!
编写程序,输入两个集合 setA 和 setB,分别输出它们的交集、并集和差集 setA-setB
好的,我能为您解答这个问题。以下是代码示例:
```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}
```
希望这可以帮助您。
阅读全文