中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

python set運算如何實現集合的交集

小樊
84
2024-08-27 10:52:09
欄目: 編程語言

在Python中,可以使用set()函數或者集合對象的intersection()方法來計算兩個集合的交集。

以下是使用set()函數的示例:

# 定義兩個集合
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}

# 計算交集
intersection_set = set1 & set2
print(intersection_set)  # 輸出: {3, 4}

以下是使用intersection()方法的示例:

# 定義兩個集合
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}

# 計算交集
intersection_set = set1.intersection(set2)
print(intersection_set)  # 輸出: {3, 4}

還可以使用intersection()方法同時計算多個集合的交集:

# 定義三個集合
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
set3 = {3, 4, 7, 8}

# 計算交集
intersection_set = set1.intersection(set2, set3)
print(intersection_set)  # 輸出: {3, 4}

0
西青区| 社旗县| 新沂市| 格尔木市| 元氏县| 灵宝市| 老河口市| 鹿邑县| 郴州市| 遂川县| 阿鲁科尔沁旗| 涡阳县| 都安| 仪陇县| 桦川县| 米脂县| 云安县| 辉南县| 盐边县| 苏州市| 龙州县| 桦甸市| 仙桃市| 奎屯市| 葫芦岛市| 灵川县| 华亭县| 汝城县| 尼玛县| 巴林左旗| 永康市| 政和县| 寿光市| 兴城市| 安新县| 教育| 邢台市| 高碑店市| 博乐市| 潮州市| 牡丹江市|