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

溫馨提示×

python里set如何進行集合運算

小樊
81
2024-08-11 08:51:36
欄目: 編程語言

在Python中,可以使用set類型進行集合運算。常見的集合運算包括并集、交集、差集和對稱差集等操作。

以下是一些常見的集合運算示例:

  1. 并集:使用"|"操作符或者union()方法
set1 = {1, 2, 3}
set2 = {3, 4, 5}

# 使用"|"操作符
union_set = set1 | set2
print(union_set)

# 使用union()方法
union_set = set1.union(set2)
print(union_set)
  1. 交集:使用"&"操作符或者intersection()方法
set1 = {1, 2, 3}
set2 = {3, 4, 5}

# 使用"&"操作符
intersection_set = set1 & set2
print(intersection_set)

# 使用intersection()方法
intersection_set = set1.intersection(set2)
print(intersection_set)
  1. 差集:使用"-"操作符或者difference()方法
set1 = {1, 2, 3}
set2 = {3, 4, 5}

# 使用"-"操作符
difference_set = set1 - set2
print(difference_set)

# 使用difference()方法
difference_set = set1.difference(set2)
print(difference_set)
  1. 對稱差集:使用"^"操作符或者symmetric_difference()方法
set1 = {1, 2, 3}
set2 = {3, 4, 5}

# 使用"^"操作符
symmetric_difference_set = set1 ^ set2
print(symmetric_difference_set)

# 使用symmetric_difference()方法
symmetric_difference_set = set1.symmetric_difference(set2)
print(symmetric_difference_set)

通過以上示例,可以進行常見的集合運算操作。

0
南宫市| 孟连| 大足县| 土默特左旗| 永胜县| 龙江县| 阜阳市| 庆云县| 汤原县| 临汾市| 教育| 吕梁市| 清涧县| 巴南区| 潮州市| 邯郸县| 辰溪县| 乐亭县| 石柱| 铁力市| 定日县| 牡丹江市| 清原| 健康| 巴林右旗| 来宾市| 蓬溪县| 康马县| 霍州市| 达尔| 承德市| 丰宁| 弥勒县| 乌兰县| 宣汉县| 辽宁省| 清徐县| 金乡县| 什邡市| 甘南县| 建湖县|